-
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: ('BFINIT', 'BFADD', 'BFEXISTS', 'BFINFO') #1031
Comments
Please assign this to me. |
Thanks @apoorvyadav1111 go for it sir! 🙌🚀 |
HI @apoorvyadav1111 , 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. |
@AshwinKul28 @apoorvyadav1111 If you are occupied with other issues. Can you delegate some of these issues to me ? |
@AshwinKul28 @apoorvyadav1111 , happy to take this up if you are still looking for some one. |
Hi @vpsinghg, @benjaminmishra, thanks for sharing your interest in contributing to this issue. Indeed another issue held me off on this one, but I have already started. So I would like to finish this one. Hi @AshwinKul28 , I will be raising a PR mid week. Thanks, |
Hi @AshwinKul28 , created #1110 as a child issue as the current command are inconsistent with the expected behavior. |
…`bf.info` to store_eval (#1117)
This issue tracks the migration of the mentioned commands - ('BFINIT', 'BFADD', 'BFEXISTS', 'BFINFO') 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: