tags:

views:

334

answers:

1

I am looking for some sample C code for using memcache to set a value

  1. Connecting to Server/Port
  2. using multiple memcache_set
  3. Close

I have the app running in PHP in 5 lines of code but can not find any good memcache samples in C which I need to port to.

+1  A: 

First you have to pick a client, then you have to write code to that client's API.

Jonathan Feinberg