#15580: DB cache backend uses LIMIT / OFFSET query for culling
----------------------------------------+----------------------
Reporter: ikelly | Owner: nobody
Status: new | Milestone:
Component: Cache system | Version: SVN
Resolution: | Keywords: oracle
Triage Stage: Unreviewed | Has patch: 0
Needs documentation: 0 | Needs tests: 0
Patch needs improvement: 0 |
----------------------------------------+----------------------
Changes (by ikelly):
* needs_better_patch: => 0
* needs_tests: => 0
* needs_docs: => 0
Comment:
For Oracle, the existing query should probably be replaced with:
{{{
SELECT cache_key
FROM (SELECT cache_key, rank() OVER (ORDER BY cache_key) AS rank FROM %s)
WHER rank = %%s
}}}
--
Ticket URL: <http://code.djangoproject.com/ticket/15580#comment:1>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en.