| query_find {quasardb} | R Documentation |
Execute a query to find matching entries. A find query should be composed of at least one ‘tag=’some_tag'' part. It may also limit the type of entries through the use of 'type=?'. The type may be one of: 'blob', 'deque', 'int' (or 'integer'), 'stream', 'tag' or 'ts'. Logical operations 'and' and 'or' as well as negation 'not' may be used as well.
query_find(handle, query)
handle |
A valid cluster opened using 'connect'. |
query |
A query to execute. |
List of matching entry aliases/keys.
handle <- connect("qdb://127.0.0.1:2836")
query_find(handle, "find(tag='my_tag' and type=ts)")