jasonisnthappy: embeddable document database with acid guarantees in rust
14 points by sohzm
14 points by sohzm
i wanted a db that is like sqlite but it should be a document db, so here i made it
Features (claude summarized):
Repo: https://github.com/sohzm/jasonisnthappy
vibe coded?
How does querying work? I see no mention of custom indexes.
it has a both query [1] and aggregation [2] support, i had initially added just query lang but as i soon found out ppl were (fairly) sort of mad about it cuz it sucked so i added aggregation as well
you can find out more documentation at https://jasonisnthappy.soham.sh/docs/
edit: here is docs to indexes: https://jasonisnthappy.soham.sh/docs/indexing
is there a way to embed binary data along with a document ala attachments in couchdb?
not rn, the only way right now i to make a base64 string and keep it, but i do understand its very inefficient
i did think about this when i was working on it, ive created an issue to track this: https://github.com/sohzm/jasonisnthappy/issues/2
This is sick, congrats on the launch. It basically fits what I was looking for for a side project recently!