Marcel Timmerman

Results 73 comments of Marcel Timmerman

The parallelization is done just by using Promise start and that's it. when this was made there wasn't a `react` nor `whenever`.

True, I forgot to mention that. There is some code humming in the background to poll server status and sends it over a channel to anyone hooked up on it....

About the code you've sent above, there are a few things to keep in mind of which the first is most important; * When working with threads you cannot share...

Cleaned up program with several things from your code; ``` use BSON::Document; use MongoDB; use MongoDB::Client; use MongoDB::Database; use MongoDB::Collection; #------------------------------------------------------------------------------- my Str $host = 'localhost'; my Str $port =...

The first intention was to get it working, from there you can look into speeding it up. First I want to get rid of the error. You could try to...

I see in your code the use of `Lock`. Interesting, didn't know about that one. Need to read up on that and benchmark it against the `Semaphore::ReadersWriters` of mine.

Found my error and made some corrections. Of course, you want every record to be sent to the database, otherwise, you're working with incomplete data. Btw, if you have looked...

scram-sha1 method is implemented.

`mongodb-cr` is deprecated as of version 4 of mongodb. This method will therefore not be implemented by this driver. In the mean time `scram-sha256` is also implemented