full_text_search
Function
Searches for text information in a database using the BM25 algorithm. If enable_bm25 is set to False when the MilvusDocstore instance is created, this API cannot be used and an empty list is returned.
Prototype
def full_text_search(query, top_k, drop_ratio_search, filter_dict)
Parameters
Return Value
Data Type |
Description |
|---|---|
List[MxDocument] |
If a result is found, a list of MxDocument class instances is returned. If no result is found, an empty list is returned. For details about MxDocument, see MxDocument. |
Parent topic: MilvusDocstore