Joshua Dickerson

Results 26 comments of Joshua Dickerson

https://github.com/colinmollenhour/credis/issues/126#issuecomment-802950486 For anyone wanting the async nature of UNLINK for DEL commands, you can enable that for all DEL commands in Redis config: ``` lazyfree-lazy-eviction yes lazyfree-lazy-expire yes lazyfree-lazy-server-del yes...

Good conversation from Discord: ``` zstein Today at 12:16 PM It seems like the least breaking way of doing this would be to simply transition the file lock to be...

> I'm really surprised if it really takes 8ms to open the lock file It's a lot of traffic trying to get a lock on a single file (this was...

I am in favor of not locking and either removing the "feature" altogether or adding a config. If we "lock" this, it will not use flat tables and use the...

@spinsch I didn't see that they actually lock anything though. @Flyingmana that's why I think a config here would be best.

1. I think the shadow table design is a big feature that should not be part of this. Would be a great feature though. 2. Everything needed to use the...

Just found this issue https://github.com/OpenMage/magento-lts/issues/1150 which is related.

Locally I changed all of the calls to `isAvailable()` to `isAccessible()` and moved the `isAdmin()` call to the front wherever it does `If Flat Data enabled then use it but...

Just went live with some of these changes. You may see more deadlocks on the index_process table now. This is actually expected because the table is actually being used now....

I removed the locking well over a year ago on a production environment with more traffic and catalog updates than any M1 site you'll find and there have been no...