I read that Oracle 11g has a result cache function , and I could benefit from it. However, my client has Oracle 10g. Is there any reasonable way to emulate it in a PHP / 5.2 based web application that connects to a remote Oracle 10g server via ODBC (with Oracle driver, not with Microsoft).
The idea is to cache complex queries on large tables, which usually return small data sets and ensure that cached data is discarded when the underlying tables are changed (this should not be immediate, one hour delay is acceptable).
I can install the new software on a web server (and not on an Oracle server), and maybe I could switch to OCI8.
source
share