Replies: 2 comments
-
| Great! | 
Beta Was this translation helpful? Give feedback.
                  
                    0 replies
                  
                
            -
| Closed due to above PR | 
Beta Was this translation helpful? Give feedback.
                  
                    0 replies
                  
                
            
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
Uh oh!
There was an error while loading. Please reload this page.
-
Problems:
I found that when using
BloomFilterwe can't use replica.Because
BITFIELDiswritecategory command.we can't simply change to
BITFIELDtoBITFIELD_RO. becauseBITFIELD_ROsupports from 6.0.0 version. change narrow down supported redis version to userueidisprob.Event if we change
BITFIELDcommand toBITFIELD_RO, it is difficult to use replica. Because we always useEVALandEVALSHAcommand to read & write. For example if we useSendToReplicasoption for read-write splitting, we can't easily configureSendToReplicasdue to hard to distinguish read & write commands.Solution
Adding
we add options to constructor like this
So if
enableReadOperationis true, we useBITFIELD_RO,EVAL_RO,EVALSHA_RO.Considering
I don't want to change minimum version of
rueidisprob.BloomFilterto 6.0.0 or 7.0.0Beta Was this translation helpful? Give feedback.
All reactions