Open AshwinKul28 opened 1 month ago
Hi Ashwin, I'd like to work on this issue, Can you please assign this to me?
Thanks @ankkyprasad go for it 🚀
HI @ankkyprasad , 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.
Hey @AshwinKul28, I'll start working on it from tonight. Didn't get time this weekends.
Hi @ankkyprasad hope you are doing well, can you please update the current progress on this task? If you have any blockers feel free to discuss here or on the discord.
Hey @AshwinKul28, I'm working on unittest cases. Will be done by this weekend...
Hey @ankkyprasad whts the update
Hey @mohit-nagaraj, you can take this up. I won't be unable to work on this due to some issues.
Hi, if this issue is available, I would like to work on it.
Hi @Aditya-Chowdhary, thank you for taking this on! Please proceed with the migration steps. Go for it!
This issue tracks the migration of the mentioned commands - ('LPUSH', 'RPUSH', 'LPOP', 'RPOP', 'LLEN') 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