DiceDB / dice

DiceDB is a redis-compliant, in-memory, real-time, and reactive database optimized for modern hardware and for building and scaling truly real-time applications.
https://dicedb.io/
Other
6.4k stars 1k forks source link

Command Migration: ('HSET', 'HGET', 'HSETNX', 'HDEL') #1021

Open AshwinKul28 opened 1 week ago

AshwinKul28 commented 1 week ago

This issue tracks the migration of the mentioned commands - ('HSET', 'HGET', 'HSETNX', 'HDEL') 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

Migration Steps

  1. Analyze Current Implementation

    • Review the current codebase to understand how the command logic is implemented.
  2. Refactor Return Logic

    • Create a new function with the function definition as evalXXX(args []string, store *dstore.Store) *EvalResponse under the file /internal/eval/store_eval.go
    • Analyse return statements of the eval and modify them to send raw types without encoding
    • Use errors in the return statements from /errors/migrated_errors.go file
    • Use perdefined responses from /internal/clientio/resp.go file as RespType variables
  3. Command/Worker specific Changes

    • Make IsMigrated flag to true in the commands information under /internal/eval/commands.go file.
    • Use the newly written eval function against the NewEval parameter in the same command structure.
    • Delete the old eval function from the /internal/eval/eval.go file.
    • Add the migrated command to the /internal/worker/CommandsMeta map and make it's type as SingleShard
  4. Update Unit Tests

    • Refactor existing unit tests to accommodate the new implementation.
    • Add new unit tests if necessary to cover all possible cases.
  5. Integration Tests

    • Run all integration tests to ensure successful migration.
    • Ensure that each protocol (RESP, HTTP, WebSocket) works correctly after migration.

Checklist

Additional Notes

If there are any questions or concerns about this migration, please mention them here.

Related Issues/PRs

anchalsinghrajput commented 1 week ago

@AshwinKul28, can I pick this up?

AshwinKul28 commented 1 week ago

Hey @anchalsinghrajput thanks! Go for it. 🚀

AshwinKul28 commented 6 days ago

HI @anchalsinghrajput , 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.

vpsinghg commented 5 days ago

@AshwinKul28 @anchalsinghrajput if you are currently occupied with something else, I can pick this up.

anchalsinghrajput commented 5 days ago

Hi @AshwinKul28 @vpsinghg, I am new to go, i am still working on it, will give the update once i complete it.

anchalsingh25 commented 2 days ago

Hi @AshwinKul28 , can you please reassign this issue to this Git profile.

AshwinKul28 commented 1 day ago

Done @anchalsingh25 I see you have opened a PR, please attach this issue to the PR. Thanks