datalevin

Sigve 2025-05-23T07:14:53.016799Z

If anyone is interested in trying datalevin with web development, i made a re-implementation of the https://biffweb.com/ starter app example using datalevin as the storage backend: https://github.com/sigvesn/biff-datalevin-starter

👀 4
❤️ 1
Jack Arrington 2026-01-07T12:22:56.762689Z

Was digging through this channel today in search of exactly something like this! Thank you for sharing 👍

❤️ 1
rschmukler 2025-05-23T15:16:36.391799Z

I'm running into a somewhat confusing issue where I inserted a map with a single key that is a large nested map (think ~150MB when serialized) in the shape of {:dataset }. I then tried to delete the entity via [:db/retractEntity ] and after a while (2300ms) the transaction completes successfully. However, when I run a query that matches on maps with the key the entity still shows up and (db/touch (db/entity )) still works. Any ideas on how I can retract the entity? Am I misunderstanding something?

Huahai 2025-05-23T18:50:40.227259Z

You need to post the code. What's you've done, what's your expected results.

rschmukler 2025-05-23T18:54:27.084439Z

I basically did the following:

(d/transact! conn [{:dataset 
Would you expect that do delete the EID successfully?

Huahai 2025-05-23T18:44:24.065269Z

Will investigate