pbohlman

Results 3 comments of pbohlman

Thanks for raising this. Are you initializing your `HttpClient` with your schema? That can be a source of undefined behavior if you're using any client (including the HttpClient). ```typescript const...

Hmm a couple questions 1. When you say "local DB" do you mean a in-browser db (e.g. the TriplitClient's cache) or a server db e.g. the SQLite file backing your...

Thanks for the update. Writing and then reading, repeatedly, inside a single transaction is going to lead to suboptimal performance (as currently implemented). This is because inside a transaction we...