We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f0e588 commit cdea2dcCopy full SHA for cdea2dc
setting.py
@@ -18,8 +18,6 @@ class Config(object):
18
'raise_on_warnings': True,
19
}
20
21
- MemcachedServer = ['127.0.0.1:11211']
22
-
23
UserAgent = [
24
'Mozilla/5.0 (Windows; U; Windows NT 5.2; zh-CN; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5',
25
'Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.0;+.NET+CLR+3.0.04506;)',
@@ -39,9 +37,8 @@ class Config(object):
39
37
]
40
38
41
SessionOptions = {
42
- 'session.type': 'ext:memcached',
43
- 'session.cookie_expires': 300,
44
- 'session.url': MemcachedServer[0],
+ 'session.type': 'memory',
+ 'session.cookie_expires': True,
45
'session.key': 'auth_token',
46
'session.httponly': True,
47
'session.auto': True
0 commit comments