哪些情况会导致东京内阁封锁
我正在使用 Tokyo Cabinet 和 python 中的 tc 模块。我以 TDB 格式存储数据。我预计该表仅在写入期间阻塞。不幸的是,我发现当文件在“写入器模式”下打开时,其他进程无法从中读取。这是标准行为、包装问题还是我做错了什么?或者可能还有其他情况导致操作被阻止?
I'm using Tokyo Cabinet with the tc
module in python. I store my data in the TDB format. I expected the table to block only for the duration of a write. Unfortunately, I see that when the file is open with in the "writer mode", other processes cannot read from it. Is that a standard behaviour, wrappers problem, or am I doing something wrong? Or maybe there are other cases when the operations are blocked?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据规范:
您可以为每个写入操作创建并关闭写入器,也可以使用 Tokyo Tyrant 来提供并发访问。
According to specification:
You have either create and close writer for each write operation or use Tokyo Tyrant to provide concurrent access.