Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 381 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 381 Bytes

kyoto

A modular designed high performance cache

Functionality

A key-value cache prototype.

Serves HTTP protocol. Client commands has to comply with HTTP request format, and the command information should be json in request body.

For example:

{ "command": "GET", "key": "foo" }

or:

{ "command": "SET", "key": "foo", value: "bar" }

Idea

Faster, my friend.