Results 6 comments of la.onger

`-A -sV -Pn -oG /tmp/output.txt` means rustscan call nmap do this: `nmap -vvv -p {{port}} {{ip}} -A -sV -Pn -oG ./output.txt` so, it is nmap that wrote the result to...

Python: ``` In [69]: t.search(v).__dict__ Out[69]: {'_table': LanceTable(connection=LanceDBConnection(.readit/db), name="vectors"), '_limit': 10, '_columns': None, '_where': None, '_with_row_id': False, '_query': array([ 0.00467143, -0.01212643, -0.00172388, ..., -0.02341503, 0.00321902, -0.04500008], dtype=float32), '_metric': 'L2', '_nprobes':...

thx @wjones127 's reply. but.... Set prefilter to `false` is no use. The problem still **exists**. > To turn off prefilter in Rust, call the `postfilter` method: https://docs.rs/lancedb/latest/lancedb/query/struct.VectorQuery.html#method.postfilter

Ok, here is Python's explain: ``` In [104]: print(t.search(v).explain_plan()) ProjectionExec: expr=[file@3 as file, md5@4 as md5, code_type@5 as code_type, lang@6 as lang, name@7 as name, purpose@8 as purpose, content@9 as...

``` rustc 1.80.1 name = "lance" version = "0.17.0" ``` and ``` Python 3.11.4 (main, Jan 31 2024, 11:30:14) [Clang 15.0.0 (clang-1500.1.0.2.5)] on darwin >>> lancedb.__version__ '0.13.0' ``` > And...