An open API service indexing awesome lists of open source software.

https://github.com/aacfactory/bcache

cache
https://github.com/aacfactory/bcache

Last synced: 5 months ago
JSON representation

cache

Awesome Lists containing this project

README

          

# bcache
byte cache

## Install
```shell
go get github.com/aacfactory/bcache
```

## Usage
```go
cache := bcache.New()
setErr := cache.Set([]byte("key"), []byte("value"))
value, has := cache.Get([]byte("key"))
```