Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 536 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 536 Bytes

memcached-server

Minimal memcached server program based on libevent implementing get/set binary protocol

Steps to compile

  1. Install libevent library
  1. make

Steps to run/test

  1. Runs the server on port listening on port 11211 ./memcached-server 11211

  2. Use bmemcached library to test https://github.com/jaysonsantos/python-binary-memcached

Limitations

  • Max Key size 256 bytes
  • Max Val size 512 bytes
  • Single threaded - No locking