Not a database, just a map of json strings where you can update the json stored at some key. You could write the same interface on top of localStorage.
Yes that is exactly what it is! It's basically a very small upgrade over my favorite database: A JSON-file :)
Show HN: NoSQL, but it's SQLite
41–48 of 48 posts
Re: Show HN: NoSQL, but it's SQLite
#42dang -- why was this flagged? Seems like a perfectly reasonable post.
p.s. @dang doesn't work - you have to email hn@ycombinator.com if you want mostly-guaranteed message delivery.
Re: Show HN: NoSQL, but it's SQLite
#43Re: Show HN: NoSQL, but it's SQLite
#44Not a database, just a map of json strings where you can update the json stored at some key. You could write the same interface on top of localStorage.
Yes that is exactly what it is! It's basically a very small upgrade over my favorite database: A JSON-file :)
Re: Show HN: NoSQL, but it's SQLite
#45dang -- why was this flagged? Seems like a perfectly reasonable post.
Re: Show HN: NoSQL, but it's SQLite
#46It combines the convenience of SQLite (nothing to install) with the convenience of just throwing stuff in a dict. Perfect for quick prototypes/mockups.
Re: Show HN: NoSQL, but it's SQLite
#47I've built this (unironically) for Python: https://github.com/senko/dante It combines the convenience of SQLite (nothing to install) with the convenience of just throwing stuff in a dict. Perfect for quick prototypes/mockups.
Re: Show HN: NoSQL, but it's SQLite
#48I've built this (unironically) for Python: https://github.com/senko/dante It combines the convenience of SQLite (nothing to install) with the convenience of just throwing stuff in a dict. Perfect for quick prototypes/mockups.
So it's a lot like the shelve builtin module?