MemCached client with Delphi

拈花ヽ惹草 提交于 2019-12-11 07:58:23

问题


Hallo, Does anyone perhaps know how to interface with a MemCached server (linux) from within a Delphi win32 application? I am unable to find a general C DLL client, or perhaps delphi code to communicate to the server. Any suggestions/help would be appreciated.

Thanks Eric Grobler


回答1:


A Delphi client for Memcached can be found on google code:

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




回答2:


Since the protocol is fairly simple, just about any library which handles telnet should be able to handle communication with the server. This includes Indy, Synapse, and ICS. I based this off of the protocol documentation.

My preference would be to implement using Synapse. Synapse uses an object model rather than a component model, and is very easy to use and extend. The latest developers version (available via SVN) supports Delphi 2009 and I would expect soon to support Delphi 2010.




回答3:


Thanks for your feedback, I will try a telnet communication. (and have a look at Synapse)

Regards Eric



来源:https://stackoverflow.com/questions/1334358/memcached-client-with-delphi

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!