我正在使用circuit-framework和Python 2.7开发网络应用程序。我根据TCPServer类创建自己的TCP服务器。我想知道在使用TCP套接字连接时如何存储一些持久性信息,例如用户登录数据?
class MyTCPServer(TCPServer):
@handler("read")
def on_read(self, sock, data):
"""Read Event Handler"""
return data+" from server at :"+time.strftime("%c")
谢谢!