Log message #4158032

# At Username Text
# Jul 11th 2018, 12:16 Diego_ im not making any change in the main entity only creating new record for the join one
# Jul 11th 2018, 12:16 josbeir then both models will get timestamp magic
# Jul 11th 2018, 12:16 Diego_ both models have the behavior
# Jul 11th 2018, 12:15 josbeir not the associations
# Jul 11th 2018, 12:15 josbeir it should update the model where the behavior is attached to
# Jul 11th 2018, 12:00 Diego_ Using the cake book example: Student BelongsToMany Course and Course BelongsToMany Student, when creating a new record for student=>courses(many in the same form) the behavior updates the course modified column too, arent its suposed to update only the join model table? CoursesMemberships
# Jul 11th 2018, 12:00 Diego_ Hello, im trying to understand the Timestamp behavior using event 'modified' => 'always' with a "through" association.
# Jul 11th 2018, 11:47 lorenzo yes
# Jul 11th 2018, 10:59 magiq if event throws exception, code that call dispatch will die or not ?
# Jul 11th 2018, 10:49 josbeir and i'm lazy
# Jul 11th 2018, 10:49 josbeir amqp would be my other choice but that would require more work :P
# Jul 11th 2018, 10:49 josbeir i'll give it a go, seems headache-free enough to me :slightly_smiling_face:
# Jul 11th 2018, 10:46 dereuromark yes, even fatals are now caught in php7 :slightly_smiling_face: you can run them simultanously, as long as the DB is somewhat transaction safe (inno db should be afaik for mysql)
# Jul 11th 2018, 10:43 josbeir you just mean that it catches exceptions ?
# Jul 11th 2018, 10:43 josbeir and what do you mean 'not in php7' ?
# Jul 11th 2018, 10:43 josbeir @dereuromark and its no problem that these workers run simultaneously
# Jul 11th 2018, 10:36 dereuromark but I tend to use 5-10 min frames to start new workers, and let them run for about twice as long.
# Jul 11th 2018, 10:35 dereuromark no, not in php7
# Jul 11th 2018, 10:35 cjquinn I’ve used your plugin in production @dereuromark. Its very good, so tyvm!
# Jul 11th 2018, 10:34 josbeir @dereuromark i'm guessing that if a job in the worker crashes, the whole worker crashes with it ?
# Jul 11th 2018, 10:32 josbeir i do like the aproach of that plugin and it is actively maintained
# Jul 11th 2018, 10:32 neon1024 At least you know where to find @dereuromark to get support! :,)
# Jul 11th 2018, 10:31 josbeir hmm :slightly_smiling_face:
# Jul 11th 2018, 10:31 dereuromark And it works better on real servers rather than heroku I discovered :P
# Jul 11th 2018, 10:31 neon1024 https://github.com/FriendsOfCake/awesome-cakephp#queue
# Jul 11th 2018, 10:31 dereuromark We use it in production actually :slightly_smiling_face: But not for critical systems.
# Jul 11th 2018, 10:31 josbeir ?
# Jul 11th 2018, 10:31 josbeir yeah was looking to the one from @dereuromark but the readme states thats its made for demo purposes
# Jul 11th 2018, 10:31 neon1024 Don’t use queues very often though, twice actually, if I remember
# Jul 11th 2018, 10:30 neon1024 I tend to use either MySQL with either of @dereuromark or @savant plugins. Or RabbitMQ
# Jul 11th 2018, 10:29 josbeir is amqp still a thing ?
# Jul 11th 2018, 10:29 josbeir general question: what are good job queue systems these days
# Jul 11th 2018, 10:25 joopm thank you really much your help
# Jul 11th 2018, 10:24 neon1024 The TL;DR is that `use` just means import this class, it doesn’t include the file or load it. You need an autoloader for that, which is what PSR4 does, and Composer implements for you.
# Jul 11th 2018, 10:23 neon1024 Also, https://www.php-fig.org/psr/psr-4/
# Jul 11th 2018, 10:20 joopm yes probably you are right i am not aware what use does
# Jul 11th 2018, 10:20 neon1024 http://php.net/manual/en/language.namespaces.importing.php
# Jul 11th 2018, 10:19 neon1024 If you think that, then you do not know what “use” does.
# Jul 11th 2018, 10:19 joopm so thhere is no inbuilt solution to use "use" to import vendor file?
# Jul 11th 2018, 10:17 joopm but this does not load it
# Jul 11th 2018, 10:17 joopm like use App\Vendor\recaptcha\recaptchalib;