diff options
author | adam <anton@adamansky.com> | 2012-11-14 17:14:53 +0700 |
---|---|---|
committer | adam <anton@adamansky.com> | 2012-11-14 17:14:53 +0700 |
commit | ba9fd2d3177d6fe97ffc14a0ff5b3c6f5f5d3b48 (patch) | |
tree | a27a193dbaf33e1c74f805ea7d3419daf6628877 /tcejdb | |
parent | f9bb6c941604bd0cbfa777323acd7ad55810a2d3 (diff) | |
download | ejdb-ba9fd2d3177d6fe97ffc14a0ff5b3c6f5f5d3b48.tar.gz ejdb-ba9fd2d3177d6fe97ffc14a0ff5b3c6f5f5d3b48.tar.bz2 ejdb-ba9fd2d3177d6fe97ffc14a0ff5b3c6f5f5d3b48.zip |
v1.0.7
Diffstat (limited to 'tcejdb')
-rw-r--r-- | tcejdb/ejdb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tcejdb/ejdb.h b/tcejdb/ejdb.h index 0239407..de6b6d9 100644 --- a/tcejdb/ejdb.h +++ b/tcejdb/ejdb.h @@ -220,7 +220,8 @@ EJDB_EXPORT bson* ejdbloadbson(EJCOLL *coll, const bson_oid_t *oid); * - {'json.field.path' : {'$exists' : true|false}} * - $icase Case insensitive string matching: * - {'json.field.path' : {'$icase' : 'val1'}} //icase matching - * - {'name' : {'$icase' : {'$in' : ['théâtre - театр', 'hello world']}}} //icase matching with '$in' operation + * Ignore case matching with '$in' operation: + * - {'name' : {'$icase' : {'$in' : ['théâtre - театр', 'hello world']}}} * For case insensitive matching you can create special index of type: `JBIDXISTR` * * NOTE: Negate operations: $not and $nin not using indexes |