Redis
 sql >> Cơ Sở Dữ Liệu >  >> NoSQL >> Redis

Django, Redis:Nơi đặt mã kết nối

Thêm dòng này vào tệp Cài đặt để tạo kết nối,

CACHES = {
    "default": {
        "BACKEND": "django_redis.cache.RedisCache",
        "LOCATION": "redis://127.0.0.1:6379/1",
        "OPTIONS": {
            "CLIENT_CLASS": "django_redis.client.DefaultClient"
         },
        "KEY_PREFIX": "example"
    }
}

# Cache time to live is 15 minutes.
CACHE_TTL = 60 * 15

View level Cache, Nó sẽ lưu vào bộ nhớ cache của phản hồi truy vấn (dữ liệu)

from django.utils.decorators import method_decorator
from django.views.decorators.cache import cache_page

class TestApiView(generics.ListAPIView):
     serializer_class = TestSerializer

     @method_decorator(cache_page(60))
     def dispatch(self, *args, **kwargs):
          return super(TestApiView, self).dispatch(*args, **kwargs)

Bộ nhớ cache cấp mẫu,

from django.conf import settings
from django.core.cache.backends.base import DEFAULT_TIMEOUT
from django.shortcuts import render
from django.views.decorators.cache import cache_page
from .services import get_recipes_with_cache as get_recipes

CACHE_TTL = getattr(settings, 'CACHE_TTL', DEFAULT_TIMEOUT)


@cache_page(CACHE_TTL)
def recipes_view(request):
     return render(request, 'index.html', {
         'recipes': get_recipes()
     })

Đối với bất kỳ nghi ngờ nào, hãy tham khảo liên kết này

  1. Làm cách nào để lưu vào bộ nhớ cache các lệnh gọi API Django Rest Framework?
  2. https://github.com/realpython/django-redis-cache
  3. https://boostlog.io/@nixus89896/setup-caching-in-django-with-redis-5abb7d060814730093a2eebe



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Cách nhận nhiều giá trị danh sách trong một lần gọi trong RedisTemplate của Jedis Client

  2. Giao diện người dùng Web Logstash không khởi động

  3. cài đặt redis trên phiên bản vi mô aws

  4. Tại sao SQLite nhanh hơn Redis trong điểm chuẩn đơn giản này?

  5. Docker &Celery - LỖI:Pidfile (celerybeat.pid) đã tồn tại