-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can you manually exclude statement caching? #182
Comments
Any reason why you need that? LRU ones are thrown off the cache if the cache is full. |
i don't want to cache 'on the fly' dynamic statements and to push out cached statements. |
@xpiwo any chance you can use bind variables for this kind of statement? How's the statement caching working out for you in general? @krismohan do you want to add a doNotCache option to execute() that indicates OCIStmtRelease should use OCI_STRLS_CACHE_DELETE? |
It might be possible to use bind variables and pass a bunch of nulls/empty strings, but that's ugly. The do not cache flag is the feature request i was aiming for :) Thanks. |
It is feasible. OCI supports it as Chris mentioned. |
A new |
It it possible to explicitly exclude some statement from the cache? setDisableStatementCaching?
Thanks.
The text was updated successfully, but these errors were encountered: