Loading request...
Add the ability to search within the properties of JSON documents using a command like `JSEARCH roads MATCH properties.prop0 value1`.
For example: ``` SET roads road1 OBJECT {"type": "LineString",coordinates": [[102.0, 0.0], [103.0, 1.0], [104.0,0.0],[105.0, 1.0]]},"properties": {"prop0": "value0","prop1": 0.0}} SET roads road2 OBJECT {"type": "LineString",coordinates": [[102.0, 0.0], [103.0, 1.0], [104.0,0.0],[105.0, 1.0]]},"properties": {"prop0": "value1","prop1": 2.0}} ``` I want to return the object that it's "prop0" equal "value1",with a command: `JSEARCH key MATCH path` e.g. `JSEARCH roads MATCH properties.#[prop0=="value1"]#`