TheUnableDeveloper

Results 13 comments of TheUnableDeveloper

Thank you for considering the idea! I would also add the option to run them in parallel if needed (maybe with a flag)

Hi! thanks for the fast reply. Here it is the schema.xml table definition: ``` ``` and the relative SQL part: ``` DROP TABLE IF EXISTS "settings"; CREATE TABLE "settings" (...

Hi, I'm back. I tried to run the build command, though the problem was hard to replicate before (and now too) so it'll take a while to check the solution....

Hello, We upgraded to the last version of Propel and we didn't face the issue anymore, lately. So I believe we can close the issue. Thank for your support. Note:...

Hello, after some weeks without any problems , we lately faced this problem again. Always on different tables and with different kind of queries (SELECT, UPDATE etc). The only infos...

Hello, I confirm that we use opCache, we will try to disable it. In the meantime I'll check the files you mentioned and I'll be back to you. Thank you...

Hi, we disabled opcache in order to make a test and the problem immediately disappeared. We'll keep it monitored, and the app doesn't seem that much slower so, at the...

Hello, we fixed the issue. It was related to a wrong OPCACHE setup. This is our new setup: ``` [opcache] opcache.enable=1 opcache.revalidate_freq=1000 opcache.validate_timestamps=0 opcache.max_accelerated_files=100000 opcache.memory_consumption=256 opcache.max_wasted_percentage=10 opcache.interned_strings_buffer=16 opcache.fast_shutdown=1 opcache.revalidate_path=1 opcache.enable_cli=1...

Hello, We finally identified the root cause of this error. OPCache is case-sensitive when generating cache keys for methods, while PHP itself is not case-sensitive with method names. The error...