All Projects → Qihoo360 → Kmemcache

Qihoo360 / Kmemcache

Licence: other
linux kernel memcache server

Programming Languages

c
50402 projects - #5 most used programming language

kmemcache

kmemcache is a high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load.

kmemcache is derived from memcached-v1.4.15, exactly it is a linux kernel memcached, and aims at quicker response and higher performance.

Current Limitations

kmemcache has now implemented all most major features of memcached, including the complete binary and text protocols, based on tcp, udp and unix domain communication protocols, slab allocation dynamically rebalanced, hash table expansion and so on.

The programming interface remains consistent with memcached. Clients using memcached can easily connected to kmemcache, without modification. You could also easily add the kmemcache server to your cluster of memcached servers.

The following are some features that have not been implemented yet:

  • SASL

Environment

x86_32/x86_64 kernel: [2.6.32, 3.2] other versions have not been tested

Building, Running & Testing

  1. Clone kmemcache from github

    [[email protected]]$ git clone https://github.com/jgli/kmemcache.git

  2. Compiling kmemcache

    [[email protected]]$ cd kmemcache [[email protected]]$ make

  3. Running kmemcache

3.1 Change user to root

[[email protected]]$ su root
Password:

3.2 Insert kernel module and start server

[[email protected]]# insmod kmod/kmemcache.ko
[[email protected]]# user/umemcached -h
[[email protected]]# user/umemcached -p 11213
  1. Stopping kmemcache

    [[email protected]]# rmmod kmemcache

  2. Testing kmemcache

5.1 Case 1, using libmemcached

[[email protected]]# apt-get install libmemcached
[[email protected]]# memcapable -h localhost -p 11213
[[email protected]]# memslap --servers=localhost:11213

5.2 Case 2, using testapp

[[email protected]]# insmod kmod/kmctest.ko
[[email protected]]# ./test/testapp

5.3 Case 3, using perl scripts

[[email protected]]# ./t/auto.pl

5.4 More cases refer to memcached

Contributing

Want to contribute? You are so welcome! Any reporting bugs, feedback, and pulling requests are encouraged!

Website

Official memcached: http://www.memcached.org/ Test tools: http://libmemcached.org/libMemcached.html Something about kmemcache from my blog: http://blog.sina.com.cn/u/3289939872

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].