I'm running a python script on a read only system. Because I'm dealing with a lot of files I want to have some kind of database. But since it's read only I just need that in ram. I could safe all the information in variables, but I'd love to be able to query in a more complex way. So is there a trick to get something like a mysql database, but not saving in to the memory card?
I know I could create a tmpfs, but maybe there is a more clever way!?
I'm running Raspbian (like Debian) on my raspberry pi.