Reputation: 410
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
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
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