Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
44164c5c
Kaydet (Commit)
44164c5c
authored
Şub 23, 2013
tarafından
George Song
Kaydeden (comit)
Aymeric Augustin
Şub 24, 2013
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #19896 -- Committed after clearing cache in the database.
üst
b6aede32
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
db.py
django/core/cache/backends/db.py
+1
-0
tests.py
tests/regressiontests/cache/tests.py
+8
-1
No files found.
django/core/cache/backends/db.py
Dosyayı görüntüle @
44164c5c
...
...
@@ -184,6 +184,7 @@ class DatabaseCache(BaseDatabaseCache):
table
=
connections
[
db
]
.
ops
.
quote_name
(
self
.
_table
)
cursor
=
connections
[
db
]
.
cursor
()
cursor
.
execute
(
'DELETE FROM
%
s'
%
table
)
transaction
.
commit_unless_managed
(
using
=
db
)
# For backwards compatibility
class
CacheClass
(
DatabaseCache
):
...
...
tests/regressiontests/cache/tests.py
Dosyayı görüntüle @
44164c5c
...
...
@@ -18,7 +18,7 @@ from django.core import management
from
django.core.cache
import
get_cache
from
django.core.cache.backends.base
import
(
CacheKeyWarning
,
InvalidCacheBackendError
)
from
django.db
import
router
from
django.db
import
router
,
transaction
from
django.http
import
(
HttpResponse
,
HttpRequest
,
StreamingHttpResponse
,
QueryDict
)
from
django.middleware.cache
import
(
FetchFromCacheMiddleware
,
...
...
@@ -836,6 +836,13 @@ class DBCacheTests(BaseCacheTests, TransactionTestCase):
interactive
=
False
)
def
test_clear_commits_transaction
(
self
):
# Ensure the database transaction is committed (#19896)
self
.
cache
.
set
(
"key1"
,
"spam"
)
self
.
cache
.
clear
()
transaction
.
rollback
()
self
.
assertEqual
(
self
.
cache
.
get
(
"key1"
),
None
)
@override_settings
(
USE_TZ
=
True
)
class
DBCacheWithTimeZoneTests
(
DBCacheTests
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment