Antoine Bluchet

Results 603 comments of Antoine Bluchet

+1 how may I access help/docs?

@ageorgios same way without pm2: ``` pm2 start app.js renice -n 19 -p $(cat $(pm2 desc server | grep pid | awk '{print $5}')) //bit ugly would be cleaner with...

I had built a package named "renice" because I though it'd be okay to add a "renice" command in pm2: https://github.com/soyuka/renice/blob/master/index.js (May 25, 2016, few days after this issue opened...

Then again, if you have a modern nodejs version use `os.setPriority()` ([docs](https://nodejs.org/api/os.html#os_os_setpriority_pid_priority)) or a cross-platform alternative http://npmjs.com/package/renice

+1 If you're spawning the process (like in the gist) it should be easy to pipe to a stream shouldn't it?

> These two approaches are dealing with attributes on the properties of the objects we want to map as we also know it from doctrine annotations / attributes in entities....

I understood @maxbeckers I was answering to @rogeriolino regarding the suggested implementation.

I think that the main reason to be able to configure the mapper not using the source nor the target as a way to configure is when you don't own...

Based on @nikophil research I found out that booting the kernel on `BeforeClass` (not `Before`) works just fine and I get deprecations: ```php use PHPUnit\Framework\Attributes\BeforeClass; abstract class ApiTestCase extends KernelTestCase...