Commit 1c5ce61e authored by ibuler's avatar ibuler

[Update] 修改Org刷新cache

parent 75e67410
...@@ -3,3 +3,6 @@ from django.apps import AppConfig ...@@ -3,3 +3,6 @@ from django.apps import AppConfig
class OrgsConfig(AppConfig): class OrgsConfig(AppConfig):
name = 'orgs' name = 'orgs'
def ready(self):
from . import signals_handler
...@@ -27,7 +27,7 @@ class Organization(models.Model): ...@@ -27,7 +27,7 @@ class Organization(models.Model):
def expire_cache(self): def expire_cache(self):
key = self.CACHE_PREFIX.format(self.id) key = self.CACHE_PREFIX.format(self.id)
cache.set(key, self, 0) cache.set(key, self, 1)
@classmethod @classmethod
def get_instance_from_cache(cls, oid): def get_instance_from_cache(cls, oid):
......
# -*- coding: utf-8 -*-
#
from django.db.models.signals import post_save
from django.dispatch import receiver
from .models import Organization
@receiver(post_save, sender=Organization)
def on_org_update(sender, instance=None, created=False, **kwargs):
if instance and not created:
instance.expire_cache()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment