chainindexing
Chain indexing is a data indexing technique used to organize and retrieve items in large datasets by linking index entries into a linear chain. Each node in the chain contains a key and a pointer to the next node, and, in many designs, a reference to the location of the corresponding data record. Chains can be maintained as singly linked lists or as a set of linked blocks on secondary storage. A higher-level index or directory maps search keys to the appropriate chain head, enabling access to the sequence of entries that share a common prefix, bucket, or partition.
In operation, new entries are appended to the end of a chain or inserted at the appropriate
Chain indexing is commonly used in scenarios with high append workloads, long sequential scans, or time-ordered
See also: linked list indexing, inverted index, B-tree, hashing, log-structured merge tree.