You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WriteTx is for write operations, with the following two
subclasses:
AlignedTx is for aligned writes, which only require
DRAM-to-PMEM copy
CoWTx is for unaligned write, and thus requires
copy-on-write. It has two subclasses, SingleBlockTx if the writes is
within a single block, and MultiBlockTx if the writes is across multiple
blocks.