/memcached-challenge

memcached development tree

Primary LanguageCBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

Memcached Challenge

Inspired by Arthur O’Dwyer's Blog, I start this challenge as an engineering interview (a little big different from the blog):

  1. Fork memcached - master, and build it.

I suggest using Linux os to do this, since there may be errors in compile stage in MacOS (not test on Windows).

git clone --depth=1 https://github.com/memcached/memcached.git

sh autogen.sh
./configure
make
  1. Implement a mult method to multiply a unsigned instance number to a stored number.

Here is the demo from my impl:

demo

For more details, checkout the >PR<.

I DO need some suggests, just leave a issue.