-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Command Migration: ('SETBIT', 'GETBIT', 'BITCOUNT', 'BITPOS', 'BITFIELD') #1017
Comments
Hey @AshwinKul28 can I pick this up? |
Thanks @vishnuchandrashekar for the interest! Go for it 🚀 |
HI @vishnuchandrashekar , I hope you are doing well. Do you happen to have any updates on this? If you've any doubts please let us know on the discord. |
Hi @AshwinKul28, I'm doing good thank you for asking. |
Hey @AshwinKul28 another quick update - With the changes merged in #956 I'm going to have to refactor the BITFIELD_RO command and the corresponding tests as well. Currently working on that, would you like me to raise a draft pr so that you could have a look at the changes till now? |
Hello @vishnuchandrashekar, There has been no activity on this issue for the past 5 days. We are really eager to close this issue at the earliest, hence if we continue to see the inactivity, we will have to reassign the issue to someone else. We are doing this to ensure that the project maintains its momentum and others are not blocked on this work. Just drop a comment with the current status of the work or share any issues you are facing. We can always chip in to help you out. Thanks again. |
Update: BITOP will be part of separate issue and can be omitted as part of #1089 |
…ITFIELD', 'BITFIELD_RO') (#1089)
This issue tracks the migration of the mentioned commands - ('SETBIT', 'GETBIT', 'BITCOUNT', 'BITPOS', 'BITFIELD') to make them compatible across the three protocols supported by the Dice database: RESP, HTTP, and WebSocket.
DiceDB now supports more than one protocols (Resp/http/websocket). We don't want eval operation of each command to be strictly bound with any of the protocols. Currently eval function return statements of each command is bounded to the RESP protocol.
The migration is required because:
The goal is to make the command logic protocol-independent, allowing all three protocols to call the same core functionality seamlessly.
Requirements
[Command Name]
to be generic.Migration Steps
Analyze Current Implementation
Refactor Return Logic
evalXXX(args []string, store *dstore.Store) *EvalResponse
under the file/internal/eval/store_eval.go
/errors/migrated_errors.go
file/internal/clientio/resp.go
file as RespType variablesCommand/Worker specific Changes
IsMigrated
flag to true in the commands information under/internal/eval/commands.go
file.NewEval
parameter in the same command structure./internal/eval/eval.go
file./internal/worker/CommandsMeta
map and make it's type asSingleShard
Update Unit Tests
Integration Tests
Checklist
Additional Notes
If there are any questions or concerns about this migration, please mention them here.
Related Issues/PRs
The text was updated successfully, but these errors were encountered: