Description:
When using pymilvus, I noticed that AsyncMilvusClient does not have the has_collection() method, whereas MilvusClient does.
Steps to Reproduce:
from pymilvus import AsyncMilvusClient
client = AsyncMilvusClient()
# Attempting to check for a collection
client.has_collection("my_collection") # AttributeError: 'AsyncMilvusClient' object has no attribute 'has_collection'
Expected Behavior:
AsyncMilvusClient should have a has_collection() method similar to MilvusClient, or an equivalent alternative should be documented.
Environment:
Additional Context:
Is there an alternative way to check for collection existence in AsyncMilvusClient, or is this a missing feature?
Description:
When using
pymilvus, I noticed thatAsyncMilvusClientdoes not have thehas_collection()method, whereasMilvusClientdoes.Steps to Reproduce:
Expected Behavior:
AsyncMilvusClientshould have ahas_collection()method similar toMilvusClient, or an equivalent alternative should be documented.Environment:
Additional Context:
Is there an alternative way to check for collection existence in
AsyncMilvusClient, or is this a missing feature?