6

Is there any way for a Delphi application to use the distributed cache from Hazelcast?

Adam Lear
  • 38,111
  • 12
  • 81
  • 101
Rodrigo Farias Rezino
  • 2,687
  • 3
  • 33
  • 60

2 Answers2

3

Hazelcast support memcache protocol. You can use a Delphi memcache client library to access Hazelcast cluster.

Talip Ozturk
  • 1,709
  • 12
  • 14
0

It depends - a small Java bridge service, using a simple object serialization (JSON) or a efficient custom serialization, would surely work. It could be implemented as a server with Grizzly, Netty or similar libraries. For a protoype, you could use a simple Java based HTTP server which the Delphi client connects to.

If you are not bound to use Hazelcast, there is a Delphi client library for memcached. See MemCached client with Delphi

Community
  • 1
  • 1
mjn
  • 36,362
  • 28
  • 176
  • 378