biscuitWizard
biscuitWizard
I've also added an optional argument that lets you specify the type of waif you are looking for: ``` @prop me.test {} +rwc Property added with value {}. ;me.test =...
I've addressed this and added a PR for adding postgres support. **Edit:** Notably my version only supports postgres, is non-blocking, and uses parameterization. It also only supports connecting to a...
After looking into LibZDB, I'm here to report my findings: LibZDB is not good software, it doesn't handle exceptions properly and frequently results in an uncatchable segfault. You can replicate...
I have another update, and it's good news this time! After talking with Tildeslash, we identified that the problem is opening connections has to be done on the main thread....
There's always the brute force approach! https://devblogs.microsoft.com/cppblog/using-c17-parallel-algorithms-for-better-performance/ Yeah, anything faster than moo-verbs would be fantastic.
Specifically, in our case, our scheduler relied on using sort() and the scheduler would reschedule forked tasks while suspending those tasks causing overflow scenarios with the scheduler itself due to...
More info: https://www.cppstories.com/2018/11/parallel-alg-perf/ I don't think we need to remove background_thread entirely, or that the solutions are mutually exclusive. People like me can disable background threads, and we can all...
That's exactly what we ended up doing (using set_thread_mode(0)). I think this is a problem less for newer MOOs and more for us old fogbies shambling in from our 2000s-era...
I've created a PR to address this since I basically wrote the code already. :P
I hear you, but it would be more attractive for moor to be able to drop in to existing environments as stated with the project's goals of backwards compatibility. In...