Esempio n. 1
0
	def increment_post_count(self):
		logging.info("thread post increment {0}".format(self.get_post_count()))
		countersharding.increment(str(self.key()))
Esempio n. 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()))
Esempio n. 3
0
	def increment_thread_count(self):
		countersharding.increment('{0}_threadcount'.format(self.key()))
Esempio n. 4
0
 def increment_post_count(self):
     logging.info("thread post increment {0}".format(self.get_post_count()))
     countersharding.increment(str(self.key()))
Esempio n. 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()))
Esempio n. 6
0
 def increment_thread_count(self):
     countersharding.increment('{0}_threadcount'.format(self.key()))