Reputation: 2461
I am using Win32 memcached from http://labs.northscale.com/memcached-packages/ And there is a DLL file within the package.
Now I am trying to write my Java project to use memcached. Somebody suggested Java -> JNI -> Custom DLL -> standard DLL call -> 3rd Party DLL in order to use the API.
What is the solution?
Upvotes: 0
Views: 506
Reputation: 11252
There are several Java Memcached clients, such as http://code.google.com/p/spymemcached/ and https://github.com/gwhalin/Memcached-Java-Client/wiki Using those is probably easier than re-inventing the wheel...
Upvotes: 1