Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@

namespace Tsavorite.core
{
// Long value layout: [1-bit tentative][13-bit TAG][50-bit address]
// Physical little endian memory layout: [50-bit address][13-bit TAG][1-bit tentative]
// Long value layout: [1-bit tentative][15-bit TAG][48-bit address]
// Physical little endian memory layout: [48-bit address][15-bit TAG][1-bit tentative]
// The top bit of the 48-bit address is the readcache indicator (see LogAddress).
[StructLayout(LayoutKind.Explicit, Size = 8)]
internal struct HashBucketEntry
{
Expand Down
Loading