1795
|
1 |
#!/usr/bin/python2.5
|
|
2 |
#
|
|
3 |
# Copyright 2009 the Melange authors.
|
|
4 |
#
|
|
5 |
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
6 |
# you may not use this file except in compliance with the License.
|
|
7 |
# You may obtain a copy of the License at
|
|
8 |
#
|
|
9 |
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10 |
#
|
|
11 |
# Unless required by applicable law or agreed to in writing, software
|
|
12 |
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13 |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14 |
# See the License for the specific language governing permissions and
|
|
15 |
# limitations under the License.
|
|
16 |
|
|
17 |
"""Module contains logic memcaching functions.
|
|
18 |
"""
|
|
19 |
|
|
20 |
__authors__ = [
|
|
21 |
'"Sverre Rabbelier" <sverre@rabbelier.nl>',
|
|
22 |
]
|
|
23 |
|
|
24 |
|
|
25 |
from google.appengine.api import memcache
|
|
26 |
|
|
27 |
import soc.cache.base
|
|
28 |
|
|
29 |
|
|
30 |
def key(model, filter):
|
|
31 |
"""Returns the memcache key for this query.
|
|
32 |
"""
|
|
33 |
|
|
34 |
return 'query_for_%s_%s' % (repr(model.kind()), repr(filter))
|
|
35 |
|
|
36 |
|
|
37 |
def get(model, filter, *args, **kwargs):
|
|
38 |
"""Retrieves the data for the specified query from the memcache.
|
|
39 |
"""
|
|
40 |
|
|
41 |
memcache_key = key(model, filter)
|
|
42 |
import logging; logging.info(memcache_key)
|
|
43 |
return memcache.get(memcache_key), memcache_key
|
|
44 |
|
|
45 |
|
|
46 |
def put(data, memcache_key, *args, **kwargs):
|
|
47 |
"""Sets the data for the specified query in the memcache.
|
|
48 |
|
|
49 |
Args:
|
|
50 |
data: the data to be cached
|
|
51 |
"""
|
|
52 |
|
|
53 |
# Store data for fifteen minutes to force a refresh every so often
|
|
54 |
retention = 15*60
|
|
55 |
|
|
56 |
memcache.add(memcache_key, data, retention)
|
|
57 |
|
|
58 |
|
|
59 |
def flush(model, filter):
|
|
60 |
"""Removes the data for the current user from the memcache.
|
|
61 |
"""
|
|
62 |
|
|
63 |
memcache_key = key(model, filter)
|
|
64 |
memcache.delete(memcache_key)
|
|
65 |
|
|
66 |
|
|
67 |
# define the cache function
|
|
68 |
cache = soc.cache.base.getCacher(get, put)
|