Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • "You should be sure IPC performance is a problem before preemptively optimizing." Could you please explain that in more detail?
    – John
    Commented Jan 24, 2022 at 7:29
  • 1
    If an API is more convenient for you, because it allows you to write clear code or less code, then you should use it first. Once you have a working program, with a realistic data usage, then you can evaluate the performance of your program. By evaluating it, tracing it, you can get information on where the bottleneck is. If your bottleneck is IPC speed, then you can switch to a more complicated but faster API. Given a tradeoff between speed and readability, you should pick readability first, then measure. If IPC speed is still an issue, then you can make an informed choice.
    – shodanex
    Commented Jan 25, 2022 at 8:41
  • @john, also see Tim Post answer
    – shodanex
    Commented Jan 25, 2022 at 8:42