Example #1
0
    def getConsumerPrefs(self, id):
        prefs = None
        if CacheKeys.useCache():
            try:
                prefs = cache.get(CacheKeys.getConsumerPrefsByIdKey(str(id)))
            except:
                pass

        if prefs is None:
            print "getting ConsumerPrefs from db"
            prefs = ConsumerPrefs.objects.all().filter(consumerId=id)
            if CacheKeys.useCache():
                cache.set(CacheKeys.getConsumerPrefsByIdKey(str(id)), prefs, None)
        return prefs
Example #2
0
 def setConsumerPrefs(self, id):
     consumerPrefs = ConsumerPrefs.objects.all().filter(consumerId=id)
     cache.set(CacheKeys.getConsumerPrefsByIdKey(str(id)), consumerPrefs, None)