Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
1c5ce61e
Commit
1c5ce61e
authored
Aug 13, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改Org刷新cache
parent
75e67410
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
1 deletion
+17
-1
apps.py
apps/orgs/apps.py
+3
-0
models.py
apps/orgs/models.py
+1
-1
signals_handler.py
apps/orgs/signals_handler.py
+13
-0
No files found.
apps/orgs/apps.py
View file @
1c5ce61e
...
@@ -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
apps/orgs/models.py
View file @
1c5ce61e
...
@@ -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
):
...
...
apps/orgs/signals_handler.py
0 → 100644
View file @
1c5ce61e
# -*- 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
()
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