Python的logging
模块有一个缓冲处理程序MemoryHandler
。
需要 +------------+------------------------------------------------------------------------------------+-------------------------+
| VehicleReg | XML | ProcessedDate |
+------------+------------------------------------------------------------------------------------+-------------------------+
| AB12CBE | <vehicle><vehiclereg>AB12CBE</vehiclereg><anotherprop>BLAH</anotherprop></vehicle> | 2016-03-01 15:21:37.640 |
| AB13QQT | <vehicle><vehiclereg>AB13QQT</vehiclereg><anotherprop>BLAH</anotherprop></vehicle> | 2016-03-01 15:21:37.640 |
+------------+------------------------------------------------------------------------------------+-------------------------+
参数。
capacity
的单位是什么?
答案 0 :(得分:3)
缓冲区的容量是它可以容纳的条目数。每个条目代表一个日志记录事件,对应于记录器记录事件的调用。