让我给你一个替代方案。看起来您想要实时更新某种信息。您可以使用发布/订阅接口(发布/订阅)。由于您使用的是 python,因此有很多可能性。
其中之一是使用Redis pub/sub 功能:http ://redis.io/topics/pubsub/ - 这里是相应的 python 模块:redis-py
-更新-
例子
这是dirkk0的一个示例(问题/答案):
import sys
import threading
import cmd
def monitor():
r = redis.Redis(YOURHOST, YOURPORT, YOURPASSWORD, db=0)
channel = sys.argv[1]
p = r.pubsub()
p.subscribe(channel)
print 'monitoring channel', channel
for m in p.listen():
print m['data']
class my_cmd(cmd.Cmd):
"""Simple command processor example."""
def do_start(self, line):
my_thread.start()
def do_EOF(self, line):
return True
if __name__ == '__main__':
if len(sys.argv) == 1:
print "missing argument! please provide the channel name."
else:
my_thread = threading.Thread(target=monitor)
my_thread.setDaemon(True)
my_cmd().cmdloop()
-更新 2 -
另外,看看这个教程:
http://blog.abourget.net/2011/3/31/new-and-hot-part-6-redis-publish-and-subscribe/