Documenting will be soon. . . .
일단 code crafts 진도 빼고나서 복습할 때 도큐멘팅 할 예정
참고 문서
- https://www.reddit.com/r/learnrust/comments/1ap0boe/make_your_own_redis_from_codecraftersio/
- https://stackoverflow.com/questions/23763031/what-does-p-stand-for-in-commands-such-as-redex-psetex-redis-milliseconds-bu/23763496#23763496
- https://redis.io/docs/latest/commands/expire/#how-redis-expires-keys
- https://github.com/codecrafters-io/build-your-own-redis/blob/main/compiled_starters/rust/README.md
- https://github.com/codecrafters-io/build-your-own-redis/blob/main/compiled_starters/rust/README.md
- https://github.com/hanchiang/codecrafters-redis-rust/blob/master/src/store/redis.rs
- https://docs.rs/redis/latest/redis/all.html
- https://docs.rs/resp/latest/x86_64-apple-darwin/resp/index.html
- https://docs.rs/resp/latest/x86_64-apple-darwin/src/resp/lib.rs.html#1-14
- https://docs.rs/resp/latest/x86_64-apple-darwin/resp/struct.Decoder.html
- https://forum.codecrafters.io/tags/c/challenges/6/challenge:redis
- https://redis.io/docs/latest/commands/command/
- https://github.dev/iorust/redis-cli/blob/master/src/connection.rs
- https://github.com/redis/node-redis/blob/master/packages/client/lib/client/RESP2/decoder.ts
- https://github.dev/iorust/resp/tree/master/src
Rust Byte 문서 북마크
https://docs.rs/bytes/1.6.1/bytes/struct.Bytes.html#method.as_ascii
https://docs.rs/bytes/1.6.1/bytes/index.html
Related Documents
- Expiry #yz1
issue: #3
Summary by CodeRabbit
New Features
Enhanced cache management with a clearer structure for stored values and expiration handling.
Improved command processing in the Redis server, allowing for optional expiration on the
SETcommand.Bug Fixes
Improved error handling in the decoding process for RESP protocol data, specifically for bulk strings and arrays.
Refactor
Streamlined internal logic for client handling and command processing, increasing maintainability and readability.
Introduced a new data structure for cache entries to improve data organization.
Style
Adjusted code formatting for improved clarity across various files.
24년 8월 17일 작성