removed gql.py and added gae memcache incr

This commit is contained in:
mdipierro
2013-06-18 04:42:28 -05:00
parent 676dc2e377
commit ad61a61d91
3 changed files with 4 additions and 6 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.5.1-stable+timestamp.2013.06.17.10.41.11
Version 2.5.1-stable+timestamp.2013.06.18.04.41.46
+3
View File
@@ -47,6 +47,9 @@ class MemcacheClient(object):
value = obj[1] + value
self.client.set(key, (time.time(), value))
return value
def incr(self, key, value=1):
return self.increment(key, value)
def clear(self, key=None):
if key:
-5
View File
@@ -1,5 +0,0 @@
# this file exists for backward compatibility
__all__ = ['DAL', 'Field', 'drivers', 'gae']
from gluon.dal import DAL, Field, Table, Query, Set, Expression, Row, Rows, drivers, BaseAdapter, SQLField, SQLTable, SQLXorable, SQLQuery, SQLSet, SQLRows, SQLStorage, SQLDB, GQLDB, SQLALL, SQLCustomType, gae