how to pass some “statistics” from c# program to another program?

后端 未结 5 394
渐次进展
渐次进展 2021-01-22 07:36

I have command-line program that \"do a lot of work\" and produce \"a lot of statistics\". It\'s stocks trading software pretty critical to delays, bugs, and whatever, so I don\

5条回答
  •  一生所求
    2021-01-22 08:19

    This is going way beyond a single comment of course. What you will eventually need is a dispatching mechanism to notify subscribers about the data record update. Since the amount of data is huge, you might not want to opt for a persistence storage. If the dispatching to multiple subscribers looks overwhelming so far, you can go with a simple interproc (via shared object (aka named pipes) for the consumer-provider to be on the same machine or something more distributed otherwise)

提交回复
热议问题