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
{{ message }}
This repository was archived by the owner on Sep 12, 2018. It is now read-only.
This issue tracks implementing the start of the Conn abstraction. A Mentat connection is the conceptual equivalent of a SQLite connection. One crucial difference is that Mentat enforces a single writer and handles some isolation. This is similar to Datomic's Java Connection API.
This issue tracks implementing the start of the
Connabstraction. A Mentat connection is the conceptual equivalent of a SQLite connection. One crucial difference is that Mentat enforces a single writer and handles some isolation. This is similar to Datomic's JavaConnectionAPI.@rnewman (and I) have been thinking at some length about how to represent the structure in Rust; he's written about this at https://github.com/mozilla/mentat/wiki/Thoughts:-modeling-db-conn-in-Rust and more he shared some notes at https://public.etherpad-mozilla.org/p/db-conn-thoughts.
Getting some pieces of this correct up front will help guide a lot of the abstractions we're building -- see comments like #283 (review) and friends.