Changeset - 550f3f412202
[Not reviewed]
0 1 0
Ben Sturmfels (bsturmfels) - 12 months ago 2023-04-24 09:40:36
ben@sturm.com.au
Configure memcached
1 file changed with 3 insertions and 5 deletions:
0 comments (0 inline, 0 general)
pinaxcon/settings.py
Show inline comments
...
 
@@ -116,9 +116,9 @@ if DEV_MODE and DEV_MODE == "LAPTOP":
 
else:
 
    CACHES = {
 
        'default': {
 
            'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
 
            'LOCATION': 'unique-snowflake',
 
        }
 
            'BACKEND': 'django.core.cache.backends.memcached.PyLibMCCache',
 
            'LOCATION': '127.0.0.1:11211',
 
        },
 
    }
 

	
 

	
...
 
@@ -366,8 +366,6 @@ SESSION_EXPIRE_AT_BROWSER_CLOSE = True
 

	
 
CONFERENCE_ID = 2
 
PROPOSAL_FORMS = {
 
    "talk": "pinaxcon.proposals.forms.TalkProposalForm",
 
    "tutorial": "pinaxcon.proposals.forms.TutorialProposalForm",
 
    "copyleft-compliance": "pinaxcon.proposals.forms.CopyleftComplianceProposalForm",
 
    "sfc-member-project": "pinaxcon.proposals.forms.MemberProjectProposalForm",
 
    "container-days": "pinaxcon.proposals.forms.ContainerDaysProposalForm",
0 comments (0 inline, 0 general)