How to store SQLite as NoSQL Store SQLite is a very capable edge database that can store various shapes of data. NoSQL databases are very popular due to the schema-less nature of storing of the data but it is totally possible to store these documents in SQLite. SQLite actually has great JSON support and even supports JSONB. Create the table To store JSON documents we need to create a table to store the values as strings. path data ttl created updated /posts/1 {"id":1} NULL 0 0 /posts/2 {"id":2} NULL 0 0 /users/1 {"id":1} NULL 0 0 The basic idea is to store a JSON object and an unique path. Th…