Log message #4151497

# At Username Text
# Jun 14th 2018, 14:04 itmpls lemme double check
# Jun 14th 2018, 14:04 savant @itmpls are you sure the file is named correctly
# Jun 14th 2018, 14:04 itmpls as the server - 16.04
# Jun 14th 2018, 14:04 itmpls locally it's vagrant that's setup to be the same ubuntu 16.04
# Jun 14th 2018, 14:04 josbeir server on linux?
# Jun 14th 2018, 14:04 josbeir using a mac?
# Jun 14th 2018, 14:04 josbeir case sensitivity ?
# Jun 14th 2018, 14:04 itmpls code is synced up
# Jun 14th 2018, 14:04 itmpls can anyone think of a reason why between 1 server and another which have the same cakephp version (3.6) and php7, my src/Model/Entity/AuditStash.php is not "registered" to override the default cake\orm\entity?
# Jun 14th 2018, 14:01 savant why not just create that one query from scratch?
# Jun 14th 2018, 14:01 savant not afaik
# Jun 14th 2018, 14:00 alexmax but for one of them, I need to remove one of the conditions that was on it
# Jun 14th 2018, 14:00 alexmax I've got a query object that I'm cloning and adding conditions to to run lots of similar queries
# Jun 14th 2018, 14:00 alexmax There is no way to remove a particular condition from a query object is there?
# Jun 14th 2018, 13:36 josbeir love ES tho! writing a whole ecommerce platform on it and using ES as its main store instead, its mature enough these days to do such things now
# Jun 14th 2018, 13:35 josbeir @lorenzomaieru ES is indeed better for such things, just take care of memory management because that can cause a bit of issues
# Jun 14th 2018, 13:25 jeremyharris I write my own because sometimes I need special formatting, such as formatting dates as the user requests and in their timezone
# Jun 14th 2018, 13:24 jeremyharris if that’s not something you want to do, there’s always https://github.com/FriendsOfCake/cakephp-csvview
# Jun 14th 2018, 13:23 jeremyharris you can make a view that uses the _serialize var to do it
# Jun 14th 2018, 13:23 jeremyharris oh yeah I just use the SPL functions like @neon1024 is suggesting
# Jun 14th 2018, 13:23 neon1024 Oh, it’s `fputcsv()`
# Jun 14th 2018, 13:23 itmpls not parsing
# Jun 14th 2018, 13:23 itmpls i'm generating it and making it downloadable
# Jun 14th 2018, 13:23 itmpls standard just to download, sorry
# Jun 14th 2018, 13:23 jeremyharris or just for working with them
# Jun 14th 2018, 13:22 jeremyharris as a view?
# Jun 14th 2018, 13:22 itmpls heh
# Jun 14th 2018, 13:22 neon1024 `file_put_csv()`
# Jun 14th 2018, 13:22 itmpls can anyone recommend a csv solution/plugin?
# Jun 14th 2018, 13:22 itmpls i see
# Jun 14th 2018, 13:19 lorenzo postgres is a good alternative as well, except for the disk problem
# Jun 14th 2018, 13:19 lorenzo in mysql there is no alternative, and in postgres you have to add the indexes manually
# Jun 14th 2018, 13:19 lorenzo it creates indexes dedicated for search
# Jun 14th 2018, 13:17 itmpls you store what you want in the doc, no relational stuff/joining and just fast parsing
# Jun 14th 2018, 13:16 itmpls basically like no-sql dbs?
# Jun 14th 2018, 13:16 itmpls how does that work? it serializes and just has an insanely fast parser?
# Jun 14th 2018, 13:15 lorenzo so it was s solid win
# Jun 14th 2018, 13:15 lorenzo but, it also allows instant searches on historic data, by nested columns as well
# Jun 14th 2018, 13:15 itmpls jeez
# Jun 14th 2018, 13:15 lorenzo we ran into a situation where the audit log tables we over 200Gb, and deleting from them would block the database
# Jun 14th 2018, 13:14 lorenzo but you can scale ES easier by adding more machines