Map<String, Doc> fetch(List<String> ids) { _ensureOpen(); final docs = <String, Doc>{}; for (final hit in _raw.fetch(ids)) { final doc = _docFromHit(hit); docs[doc.id] = doc; } return docs; }