Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(314)

Side by Side Diff: appengine/findit/lib/cache.py

Issue 2557553002: [Culprit-Finder] Seperate gae related part in cache_decorator and gitile repository to gae_libs/ (Closed)
Patch Set: Fix nits. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « appengine/findit/handlers/help_triage.py ('k') | appengine/findit/lib/cache_decorator.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5
6 class Cache(object):
7 """An interface to cache and retrieve data.
8
9 Subclasses should implement the Get/Set functions.
10 TODO: Add a Delete function (default to no-op) if needed later.
11 """
12 def Get(self, key):
13 """Returns the cached data for the given key if available.
14
15 Args:
16 key (str): The key to identify the cached data.
17 """
18 raise NotImplementedError()
19
20 def Set(self, key, data, expire_time=0):
21 """Cache the given data which is identified by the given key.
22
23 Args:
24 key (str): The key to identify the cached data.
25 data (object): The python object to be cached.
26 expire_time (int): Number of seconds from current time (up to 1 month).
27 """
28 raise NotImplementedError()
OLDNEW
« no previous file with comments | « appengine/findit/handlers/help_triage.py ('k') | appengine/findit/lib/cache_decorator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698