I\'m working on an application that will gather data through HTTP from several places, cache the data locally and then serve it through HTTP.
So I was looking at the
Depending on the application the DB could be a real overhead. If we are talking about volatile data, maybe you could skip the communication via DB completely and share the data between the data gathering process and the data serving process(es) via IPC. This is not an option if the data has to be persisted, of course.