diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/404.html b/404.html new file mode 100644 index 0000000..bc85381 --- /dev/null +++ b/404.html @@ -0,0 +1,885 @@ + + + +
+ + + + + + + + + + + + + + + + +FieldExpression is a string parser used to parse field expressions.
+It can reassemble the parsing result into a Filter object of LynseDB, which can filter the query result. Its main implementation idea is to efficiently create Filters without requiring users to learn the use of complex filtering components such as MatchRange and FieldCondition.
+It is an important component of LynseDB and can effectively improve the user-friendliness of LynseDB.
+Supported syntax:
+Supported comparison operators:
+Supported logical operators:
+Supported parentheses:
+Examples:
+Usage: +
Efficient syntax:
+not
operator.not in
instead of not :field: in [value]
when possible.not (:field: in [value])
or not (:field: in [value])
, it can be more efficient.