Rafael Soares - tuelho
Rafael Soares - tuelho

Reputation: 410

Is possible to use Coherence as a cache layer between PHP App and Oracle DB?

Oracle Coherence has a great feature 1 to support intensive read-only and read-write operations when it is used as a distributed cache layer between your App and the backend relational database storage. But I would like to know if has anyone considered using this approach in a PHP critical app context.

Any information will be appreciate.

Thanks in advance.

Upvotes: 0

Views: 237

Answers (2)

Faustas
Faustas

Reputation: 360

One of the great features of Coherence is the ability to receive notification about data entering certain state (or added/removed/updated to the cache). Without using Java, .NET or C++ APIs (provided by Oracle) you can't leverage it. However, over REST API you should be able to leverage the faster access (cumulatively, not per-call) to persistent data stores.

Upvotes: 1

thewaterwalker
thewaterwalker

Reputation: 324

You could use the Oracle Coherence REST API to access the cluster. The REST API supports HTTP GET, PUT, POST and DELETE.

Upvotes: 1

Related Questions