What Happened
- A reported issue in memsearch showed that after indexing, `memsearch search` can fail with `MilvusException` 101 (`Collection 'memsearch_chunks' is in state 'released'`) on newer `pymilvus`/`milvus-lite` versions because `_ensure_collection` in `memsearch/store.py` never loads the collection after attach/create. The proposed fix is to call `client.load_collection(collection_name)` in both collection branches (`has_collection` and create path), restoring normal hybrid search behavior on current client versions.
- A reported issue in memsearch showed that after indexing, `memsearch search` can fail with `MilvusException` 101 (`Collection 'memsearch_chunks' is in state 'released'`) on newer `pymilvus`/`milvus-lite` versions because `_ensure_collection` in `memsearch/store.py` never loads the collection after attach/create. The proposed fix is to call `client.load_collection(collection_name)` in both collection branches (`has_collection` and create path), restoring normal hybrid search behavior on current client versions.
- 1 evidence item attached for review.