flask-msearch
flask-msearch copied to clipboard
Full text search for flask.
Hi Team, I am following the example given in the README for this repository. I am getting the following error message: ```python AttributeError: 'Query' object has no attribute 'msearch' ```...
keyword = "first_name:Akhil AND country:london" results = Post.query.msearch(keyword,limit=20) there is a row in my db with first_name=Akhil and country=london It gives rollback and not showing any result Please help me...
It would be nice to be able to access all the features of the backend in use by adding the **backend property** to the **model** so that you have these...
I tried using the `rank_order=True` argument on my SQLite3 database index (~400k rows) and for queries that return a small number of results it works great. But if there are...
fix issue #24 , reproduce the bug by commenting line 114 in `flask_msearch/backends.py` and executing `test/test_whoosh.py`
When I set `MSEARCH_ENABLE = True` and try to add a new record to the table, it raises error like ``` Traceback (most recent call last): File "/Users/sucan/compNet/new_venv/lib/python3.7/site-packages/flask/app.py", line 2463,...
It would be useful to have an option to return the whoosh result object along with each result. One use case is so we can then at a later stage...
Hello! I am using msearch with sqlalchemy in my project and found out in testing that it is case sensitive. Is there a viable way to sort it out? I...
I wanted to implement fuzzy searching , is there any docs which would help me achieve that ? Thanks!