Matt

Results 28 comments of Matt

Yes, it pretty much only works with queries, unless you know of some way of getting Java to callback JS (for the intermediate steps between DB calls in a transaction)....

...FYI, I'm happy to share it, but it got a bit application specific around the Object.create() stuff, so I thought it was probably not of much help. I probably should...

That's how I do it. One connection for the entire app. Note also that you should really only have one connection per system (e.g. cluster) - you can't open the...

You can use the one "connection" to do concurrent reads and writes - it's transaction safe from a JS context (remember JS/node is single-threaded). If you want to cluster your...

You need to lock and unlock at the right times for your application. If you have a sequence of async operations you can lock before they start as long as...

I've submitted a report on the SE repo about this, however, I notice that when I access the root SSL website page from Android, I don't see a similar error,...

It's probably too late to pitch in, bit (co-incidentally), I have implemented quite a few of these in a real system [here](https://github.com/MatAtBread/AI-UI/blob/main/module/src/iterators.ts#L602). They're (probably) not 100% spec compliant, but they...

Thanks for the reply - much appreciated. Is there a current model implementation I can take a look at? I'd prefer to move to standardised functions as far as possible.

Thanks for the feedback. I'll take a look at the details tomorrow and try and make sense of it all. I'm not really familiar with the intricacies of flatMap, but...

From the logging, the error occurs in `heap_caps_add_region_with_caps` I have not managed to make this error occurs with the debugger connected. The initial boot sequence indicates there is no IRAM...