2 Commits

Author SHA1 Message Date
Jacob Schmidt
44f6b40e79 feat: Implement LLEN command to get list length
Some checks failed
Build / build (push) Failing after 1m1s
This commit introduces the LLEN command, which allows users to retrieve the length of a list stored in the database.

- Added `HandleLLengthCommand` function to `ListOperations.cs` to handle the LLEN command logic. This function retrieves the list associated with the given key and returns its length. If the key does not exist, it returns 0.
- Updated `Firefly.cs` to include the LLEN command in the command processing logic, mapping the "LLEN" command to the `HandleLLengthCommand` function.
2025-04-13 16:49:05 -05:00
Jacob Schmidt
de14285314 Initial Repo Setup 2025-04-10 21:50:41 -05:00