I'm working on an app 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 following. My app will first create several threads that will gather data at a specified interval and cache that data locally into a sqlite database.
Then in the main thread start a CherryPy app that will query that sqlite db and serve the data.
My problem is how do i handle connections to sqlite db from my threads and from the cherrypy app?
If I'd do a connection per thread to db will I also be able to create/use in memory db?
