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
Currently, to make filtering in tables, we are dynamically generating database queries. (CQL for neo4j)
The method getCondition4TxtFilter makes simply brute force pattern matching.
The text was updated successfully, but these errors were encountered:
ugurdogrusoz
changed the title
full-text search support for text searching on database side
Full-text search for text searching on database side
Feb 12, 2020
Currently, to make filtering in tables, we are dynamically generating database queries. (CQL for neo4j)
The method
getCondition4TxtFilter
makes simply brute force pattern matching.visuall/src/app/db-service/neo4j-db.service.ts
Line 246 in 861eb3f
This might be problematic for big databases. To compensate, many databases support full-text search. Neo4j also supports it. https://neo4j.com/developer/kb/fulltext-search-in-neo4j/ It might be necessary to use full-text search in the future.
The text was updated successfully, but these errors were encountered: