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