Beispiel #1
0
	def increment_post_count(self):
		logging.info("thread post increment {0}".format(self.get_post_count()))
		countersharding.increment(str(self.key()))
Beispiel #2
0
	def increment_post_count(self):
		logging.info("forum post increment {0}".format(self.get_post_count()))
		countersharding.increment('{0}_postcount'.format(self.key()))
Beispiel #3
0
	def increment_thread_count(self):
		countersharding.increment('{0}_threadcount'.format(self.key()))
Beispiel #4
0
 def increment_post_count(self):
     logging.info("thread post increment {0}".format(self.get_post_count()))
     countersharding.increment(str(self.key()))
Beispiel #5
0
 def increment_post_count(self):
     logging.info("forum post increment {0}".format(self.get_post_count()))
     countersharding.increment('{0}_postcount'.format(self.key()))
Beispiel #6
0
 def increment_thread_count(self):
     countersharding.increment('{0}_threadcount'.format(self.key()))