MemCached Client with Delphi

Hallo, Does anyone possibly know how to interact with the MemCached (linux) server in a Delphi win32 application? I cannot find a common C DLL client, or possibly delphi code to communicate with the server. Any suggestions / help would be appreciated.

Thanks Eric Grobler

+1
source share
3 answers

The Delphi client for Memcached can be found in google code:

http://code.google.com/p/delphimemcache/

+3
source

Since the protocol is quite simple, almost any library that processes telnet should be able to handle communication with the server. This includes Indy , Synapse , and ICS . I based this on the documentation protocol.

My advantage would be to implement Synapse. Synapse uses an object model, not a component model, and is very easy to use and extend. The latest version of the developer (available via SVN) supports Delphi 2009, and I expect it to support Delphi 2010 soon.

+2
source

Thanks for your feedback, I will try telnet-connection. (and look at Synapse)

Eric relationship

0
source

Source: https://habr.com/ru/post/906104/


All Articles