A schemaless layer over SQLite
I've been hard at work these days, and to relax I decided to develop a small application/side project. As with many applications, I needed a reliable, persistent store, so I went with the most reliable, easy to set up, performant, and generally awesome store I knew: SQLite.
However, since this was a very experimental prototype, I got tired of the frequent schema changes and wished I had something that didn't dictate a schema, but that I could still query quickly. MongoDB is, theoretically, a very good fit for this, but I'm not very fond of it ...
Continue reading