Categorygithub.com/tekton/ccdb
modulepackage
0.0.0-20240131155034-f04928bda9a3
Repository: https://github.com/tekton/ccdb.git
Documentation: pkg.go.dev

# README

ccdb

Case Context Database

What the what?

A redis wire compatible, disk backed, data store. Basically if you run it from an nvme cloud instance it's fast enough for most use cases.

Why?

Sometimes I want to use redis but I don't have enough memory for it. There are other projects that are similar to this one, but I wanted to try my hand at it.

Where to use:

  • Development
  • Places where writes are ok to be slow

Notes

An example config is included, those are the only three options right now.

docker

docker build -t ccdb:dev .
docker container run -p 6379:6969 ccdb:dev

# Variables

var addr = ":6969" application wide settings.