https://github.com/mrinalxdev/distributed-cache
scalable caching layer for fast data access.
https://github.com/mrinalxdev/distributed-cache
Last synced: 8 months ago
JSON representation
scalable caching layer for fast data access.
- Host: GitHub
- URL: https://github.com/mrinalxdev/distributed-cache
- Owner: mrinalxdev
- Created: 2025-06-22T23:29:39.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-06-29T07:54:07.000Z (8 months ago)
- Last Synced: 2025-06-29T08:33:27.400Z (8 months ago)
- Language: TypeScript
- Homepage:
- Size: 85 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Building a Distributed Cache
What we will be hitting in this project
- [ ] LRU Cache from scratch : in memory js map + doubly linked list (O(1))
- [x] Get method
- [x] Set method
- [x] Moving the node to head
- [x] Adding the node to head
- [x] removing the node
- [x] evicting the tail
- [ ] Redis : `ioredis` using redis with nestJs for the first time
Can we make it scalable ? if yes then how ?? How are we making it in a backend service ?? If no then why not ??