You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use lmdb-js with bun (1.0.7) but it just hangs (as far as I can see, it's able to create/open the database, but not doing put/get with or without a transaction.
Is there any way I can try to diagnose this further?
The text was updated successfully, but these errors were encountered:
Asynchronous transaction callbacks require threadsafe calls, and I believe that has not been fully implemented (correctly) in Bun: oven-sh/bun#158 (comment)
Note that you can still execute multiple puts in the same event turn or same batch and they will be transactionally committed together, it is the async transaction callback that can't function without the NAPI threadsafe call system.
Hi,
I'm trying to use lmdb-js with bun (1.0.7) but it just hangs (as far as I can see, it's able to create/open the database, but not doing put/get with or without a transaction.
Is there any way I can try to diagnose this further?
The text was updated successfully, but these errors were encountered: