mirror of
https://github.com/django/django.git
synced 2025-10-29 02:52:24 +00:00
Made the database cache backend, which bypasses the ORM, compatible with time zone support.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17119 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
f6ee168919
commit
7075e93256
3 changed files with 59 additions and 18 deletions
4
tests/regressiontests/cache/models.py
vendored
4
tests/regressiontests/cache/models.py
vendored
|
|
@ -1,11 +1,11 @@
|
|||
from datetime import datetime
|
||||
from django.utils import timezone
|
||||
|
||||
from django.db import models
|
||||
|
||||
|
||||
def expensive_calculation():
|
||||
expensive_calculation.num_runs += 1
|
||||
return datetime.now()
|
||||
return timezone.now()
|
||||
|
||||
class Poll(models.Model):
|
||||
question = models.CharField(max_length=200)
|
||||
|
|
|
|||
6
tests/regressiontests/cache/tests.py
vendored
6
tests/regressiontests/cache/tests.py
vendored
|
|
@ -746,7 +746,7 @@ def custom_key_func(key, key_prefix, version):
|
|||
return 'CUSTOM-' + '-'.join([key_prefix, str(version), key])
|
||||
|
||||
|
||||
class DBCacheTests(unittest.TestCase, BaseCacheTests):
|
||||
class DBCacheTests(BaseCacheTests, TestCase):
|
||||
backend_name = 'django.core.cache.backends.db.DatabaseCache'
|
||||
|
||||
def setUp(self):
|
||||
|
|
@ -763,6 +763,7 @@ class DBCacheTests(unittest.TestCase, BaseCacheTests):
|
|||
from django.db import connection
|
||||
cursor = connection.cursor()
|
||||
cursor.execute('DROP TABLE %s' % connection.ops.quote_name(self._table_name))
|
||||
connection.commit()
|
||||
|
||||
def test_cull(self):
|
||||
self.perform_cull_test(50, 29)
|
||||
|
|
@ -776,6 +777,9 @@ class DBCacheTests(unittest.TestCase, BaseCacheTests):
|
|||
self.perform_cull_test(50, 18)
|
||||
|
||||
|
||||
DBCacheWithTimeZoneTests = override_settings(USE_TZ=True)(DBCacheTests)
|
||||
|
||||
|
||||
class DBCacheRouter(object):
|
||||
"""A router that puts the cache table on the 'other' database."""
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue