Nick Craver
Nick Craver
Is that keys in a single fetch you mean or in the database total? If total - how many are being fetched at a time? Trying to get an idea...
2-4k keys? How large is each?
@sinanopcommerce If I'm understanding you right, that's 2,000 keys * 10 KB at the low end and 4,000 keys * 150 KB at the high end, or 2 MB to...
@sinanopcommerce I wouldn't expect 1k keys at 10 KB to timeout - that's 1MB, but under load it might. It's really "do I have enough bandwidth from app server to...
If you have ideas and want more specific advice, feel free to open an issue and we can discuss a bit more - not sure how to help on current...
On this one, we strongly advise upgrading to a later version of the library which has some failover semantics for a few of these things to _help_, but key scans...
Without more info hard to advise here - advice above remains: this is an architecture problem manifesting in load, and needs a restructure to not hit scaling limits here.
Hey all - I missed updating this issue in the list but this _should_ be improved or resolved by changes in 2.6.66 (specifically #2242)
@KendoSai remove the `CommandMap` there - it's not needed and will cause issues in later versions where it's automated :)
@KendoSai you have 2 connect calls here - what are you trying to do overall? To try and help clarify, the original call here: ```cs ConnectionMultiplexer sentinelConnection = ConnectionMultiplexer.Connect(sentinelConfig); ```...