In simple loops, I have an application that looks at directories at startup and creates an index of special files - after that it works like a daemon. Another application creates such “special” files and places them in some directory. What method of informing the first application about a new file (for indexing) is the most common, simple (the first of them is runtime, so it should not be too slow) and cross-platform, if possible
I looked at RPC and IPC, but they are too heavy (also not cross-platform and slow (I need a lot of functions to work - I need a simple easy way to work), maybe).
source
share