Skip to content

numerodix/emcache

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
doc
 
 
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

emcache

Build Status Coverage Status

An implementation of memcached in Rust.

Features and todo list

  • Implements the memcached protocol.
  • Bounded cache with LRU behavior.
  • Concurrency model based on thread-per-connection.
  • Modular architecture. Transport layer is separate from storage and is configured in a N:1 topology with communication using immutable Cmd/Resp values over async channels.
  • Fairly good test coverage.
  • No config file, logging or daemonization yet.
  • Performance is generally within 0.5-1x of memcached.
  • Currently (Apr 2016) only builds against rust-nightly due to dependency on unstable "test" crate for benchmarking.

Development

To build:

$ cargo build

To run unit tests:

$ ./all_unit_tests.sh

To run the server:

$ ./run_server.sh

The Python integration test suite supplies various forms of tests. To run them against a running server:

$ python -m pyemc.main -p $PORT            # integration tests
$ python -m pyemc.main -p $PORT --stress   # burn in tests
$ python -m pyemc.main -p $PORT --fill 45  # fill to 45% capacity

About

memcached in rust

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published