Geofrey Ernest
Geofrey Ernest
@cznic is the new backend you are referring to related to the `HTTPFS`? @twitchyliquid64 regarding backup, since ql uses a single file don't you think you can just copy&gzip it?...
I see, probablySQL dump should be possible. Since all ops relate to the single database. It is okay to say you can restore by recreating the database file content. This...
> Wait for any pending R/W transaction to finish to have a consistent file image. Tricky Do we keep count of pending transactions?
That still wont be able to address to when all transactions are done.
I see, that makes sense. I haven't groked th FSM yet! __offtopic__: I have been running go-fuzz against `db.Run` for `1h20m` no crashes yet!
``` // Flush ends the transaction collecting window, if applicable. IOW, if the DB // is dirty, it schedules a 2PC (WAL + DB file) commit on the next outer...
While we are on this subject. I faced a challenge when trying to enforce canceling queries. From my understanding, when execution is happening in the FSM. This is the expected...
I see. One strategy is, properly cancel result sets( which is trivial), then we make sure we don't step into rw mode when the query is cancelled. When the cancel...
While the idea seems good. I tried it and it doesn't work well with the database/sql interfaces. For canceling queries, the `databas/sql` `QueryContext` expects cancellation at all levels, ie execution...
Off topic but similar. I tried to use ql with gorm. And even my attempt to implement a ql dialect for gorm failed flat. The reason it was hard has...