https://github.com/dropdevrahul/gocacheclient
An in-memory cache for golang (pre-alpha)
https://github.com/dropdevrahul/gocacheclient
cache golang golang-library lru-cache
Last synced: 4 months ago
JSON representation
An in-memory cache for golang (pre-alpha)
- Host: GitHub
- URL: https://github.com/dropdevrahul/gocacheclient
- Owner: dropdevrahul
- License: gpl-3.0
- Created: 2022-08-07T20:00:40.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-17T15:00:32.000Z (over 2 years ago)
- Last Synced: 2025-08-02T08:12:25.964Z (6 months ago)
- Topics: cache, golang, golang-library, lru-cache
- Language: Go
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Client library for the Gocache server
The server is [here](https://github.com/dropdevrahul/gocache)
### Usage
There is an interactive shell to connect to server and play with it
```
go run main.go -host 0.0.0.0 -port 8888
```
```
-> SET a 10
-> GET a
10
```
Please see the main.go file on how to use this as a library in your own projects
*NOTE: This is just a project for learning don't use it in production or commercial projects*