Mathieu Tarral

Results 388 comments of Mathieu Tarral

Any updates on this ticket ? I've been a happy Dynaconf user for years, but I realized today the huge performance impact that could occur when simply retrieving values from...

Hi @rochacbruno, and thanks for your reply and your concern for this issue. Sorry for my delayed reponse. >can you share how exactly you did the experiment? how to run...

Great, thanks for the feedback on this issue ! I will keep an eye on Dynaconf releases and see if 4.0.0 fixes this !

Thanks for testing and pointing to the docs @crazy-max. I tried your setup, and the cache works for me (replacing `/tmp/.buildx-cache` by `/tmp/.docker-cache`) ~~~ $ du -h /tmp/.docker-cache/ 1.6G /tmp/.docker-cache/blobs/sha256...

We take the assumption that the memory has changed, and invalidate all caches as a consequence. Looking back at this approach now, i believe we can safely remove `self.libvmi.symcache_flush()`, because...

Nitro's performance is impacted by mutliple factors 1. the interception of the syscalls themselves, which triggers an VM_EXIT everytime the instruction is executed on the CPU 2. the VCPU execution...

Is Nitro running faster with your Thread and Queue ? Because I don't understand why you made the modifications. You are introducing synchronisation issues, since the main loop just puts...

You can't, or you have to reintroduce synchronisation, which will ruin the threads modification

I think you have already the right use cases. - monitoring - altering the execution by rewriting syscall arguments values or just sysall return values. Could you be more specific...

The reason why i was catched all these different exceptions here was just to have some statistic at the beginning. I wanted to know if a hook failed because of...