(self, tr, prefix, entries)
| 309 | |
| 310 | @fdb.transactional |
| 311 | def log_stack(self, tr, prefix, entries): |
| 312 | for i, (idx, el) in entries.items(): |
| 313 | pk = prefix + fdb.tuple.pack((i, idx)) |
| 314 | pv = fdb.tuple.pack((el,)) |
| 315 | |
| 316 | tr.set(pk, pv[:40000]) |
| 317 | |
| 318 | def current_transaction(self): |
| 319 | with Tester.tr_map_lock: |