infinispan / cpp-client

C++ client for Infinispan, over the Hot Rod wire protocol
Other
10 stars 20 forks source link

Embedded database for cpp client? #373

Open mlawsonca opened 3 years ago

mlawsonca commented 3 years ago

Is it possible to open an embedded database for the cpp client (or in some other way in a C++ application)? Or is embedding only supported for Java applications?

tristantarrant commented 3 years ago

Since the actual implementation iof the cache is in Java, it cannot be embedded in a C++ application (at least not easily). Is this for test purposes or do you need an embedded cache for your C++ application ?

mlawsonca commented 3 years ago

I need an actual embedded cache for my C++ application. I saw infinispan supports a C++ API and supports embedding, but am just confirming it doesn't support both together. Thanks!