Fabian Franz

Results 88 comments of Fabian Franz

This will be a test suite 'runner', called phpcs-drupal.

@Decipher Yes,that is what I do as well, see e.g. https://github.com/md-systems/pathauto/pull/51/files#diff-cac53111fcfaee8cad3f59282e74ab86R1 for a way to do this with the --script command.

Be sure that you are not running an older libc version. It has been quite a while, but some libc versions had problems with deadlocks in FUTEX WAIT where a...

Hi all: For anyone running into deadlocks: **Please update to at least glibc 2.26 or use --disable-apcu-rwlocks.** Reason: I debugged with glibc 2.23 and was able to consistently reproduce the...

@dugwood Your case is special: I would suggest to not mix iterating the list with deleting entries: ``` $keys = []; $apc = new APCUIterator('/cache-server-[0-9]+-timed-key-[0-9]+/', APC_ITER_KEY, 1000, APC_LIST_ACTIVE); while (($entry...

I mean - you could definitely pretty easily implement usage of opcache for the data you want, but yeah invalidation (eg restart every 24 hrs) is then needed. That said...

Okay, I got it - will mark as future. I don't think epoch based algorithms are that bad and we could replace the current GC with epoch based as well,...