162
150
:param references: An iterable of iterables of keys. Each is a
163
151
reference to another key.
164
152
:param value: The value to associate with the key. It may be any
169
155
# we don't care about absent_references
170
156
node_refs, _ = self._check_key_ref_value(key, references, value)
172
158
raise errors.BadIndexDuplicateKey(key, self)
174
161
if self._nodes_by_key is not None and self._key_length > 1:
175
162
self._update_nodes_by_key(key, value, node_refs)
178
165
self._spill_mem_keys_to_disk()