You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ArcadeDBServer] <ArcadeDB_0> ArcadeDB Server v25.1.1 (build b1c737224fcab342eb60c36469cde61e0bb20271/1737875480429/main) is starting up...
[ArcadeDBServer] <ArcadeDB_0> Running on Linux 6.8.0-49-generic - OpenJDK 64-Bit Server VM 17.0.13
Issue :
We would expect
match (n:Node) returnn.name
to be as fast as
SELECTnodeOBJ.nameAS name
FROM (MATCH {type: Node, as: nodeOBJ}
RETURN nodeOBJ)
But Cypher (with limit 25) takes 5.7s
And SQL takes 6ms
All records in SQL takes ~4s
DB Imported from guide :
import database https://dl.fbaipublicfiles.com/fasttext/vectors-crawl/cc.en.300.vec.gz
with distanceFunction ='cosine', m =16, ef =128, efConstruction =128;
The text was updated successfully, but these errors were encountered:
Hello,
Version used :
Issue :
We would expect
to be as fast as
But Cypher (with limit 25) takes 5.7s
And SQL takes 6ms
All records in SQL takes ~4s
DB Imported from guide :
The text was updated successfully, but these errors were encountered: