コード例 #1
0
 def increment(self, key, value=1, time_expire=300):
     newKey = self.__keyFormat__(key)
     obj = Client.get(self, newKey)
     if obj:
         return Client.incr(self, newKey, value)
     else:
         Client.set(self, newKey, value, time_expire)
         return value
コード例 #2
0
ファイル: __init__.py プロジェクト: ejmvar/web2py
 def increment(self, key, value=1, time_expire=DEFAULT_TIME_EXPIRE):
     """ time_expire is ignored """
     newKey = self.__keyFormat__(key)
     obj = Client.get(self, newKey)
     if obj:
         if isinstance(obj,(int,double,long)):
             return Client.incr(self, newKey, value)
         else:
             value += obj[1]
             Client.set(self,newKey,(time.time(),value),
                        self.max_time_expire)
             return value
     else:
         Client.set(self, newKey, value, self.max_time_expire)
         return value
コード例 #3
0
ファイル: __init__.py プロジェクト: jrwe/web2py
 def increment(self, key, value=1, time_expire=DEFAULT_TIME_EXPIRE):
     """ time_expire is ignored """
     newKey = self.__keyFormat__(key)
     obj = Client.get(self, newKey)
     if obj:
         if isinstance(obj, (int, double, long)):
             return Client.incr(self, newKey, value)
         else:
             value += obj[1]
             Client.set(self, newKey, (time.time(), value),
                        self.max_time_expire)
             return value
     else:
         Client.set(self, newKey, value, self.max_time_expire)
         return value
コード例 #4
0
ファイル: __init__.py プロジェクト: heistermann/web2py
 def increment(self, key, value=1, time_expire='default'):
     """ time_expire is ignored """
     if time_expire == 'default':
         time_expire = self.default_time_expire
     newKey = self.__keyFormat__(key)
     obj = Client.get(self, newKey)
     if obj:
         if isinstance(obj,(int,float,long)):
             return Client.incr(self, newKey, value)
         else:
             value += obj[1]
             Client.set(self,newKey,(time.time(),value),
                        self.max_time_expire)
             return value
     else:
         Client.set(self, newKey, value, self.max_time_expire)
         return value
コード例 #5
0
ファイル: __init__.py プロジェクト: kristoh/eve-metrics
 def increment(self, key, value=1, time_expire='default'):
     """ time_expire is ignored """
     if time_expire == 'default':
         time_expire = self.default_time_expire
     newKey = self.__keyFormat__(key)
     obj = Client.get(self, newKey)
     if obj:
         if isinstance(obj,(int,float,long)):
             return Client.incr(self, newKey, value)
         else:
             value += obj[1]
             Client.set(self,newKey,(time.time(),value),
                        self.max_time_expire)
             return value
     else:
         Client.set(self, newKey, value, self.max_time_expire)
         return value
コード例 #6
0
ファイル: __init__.py プロジェクト: rimbi/bookcrawler
 def get(self,key):
     newKey = self.__keyFormat__(key)
     return Client.get(self,newKey)
コード例 #7
0
ファイル: __init__.py プロジェクト: heistermann/web2py
 def get(self, key):
     newKey = self.__keyFormat__(key)
     return Client.get(self, newKey)