This is an automated email from the ASF dual-hosted git repository.

twice pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/kvrocks-website.git


The following commit(s) were added to refs/heads/main by this push:
     new dff5a7e  Add a notice to guide users report issues to KQIR blog post
dff5a7e is described below

commit dff5a7edf38e377d21de38c08f00363847106af5
Author: PragmaTwice <[email protected]>
AuthorDate: Mon Jun 3 17:55:33 2024 +0900

    Add a notice to guide users report issues to KQIR blog post
---
 blog/2024-06-02-kqir-query-engine/index.md | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/blog/2024-06-02-kqir-query-engine/index.md 
b/blog/2024-06-02-kqir-query-engine/index.md
index f0f519e..e2898fe 100644
--- a/blog/2024-06-02-kqir-query-engine/index.md
+++ b/blog/2024-06-02-kqir-query-engine/index.md
@@ -200,34 +200,36 @@ Our primary focus will remain on transaction processing 
rather than analytical t
 ## Try it!
 
 First, we can easily set up a Kvrocks instance via Docker images.
-You also have the choice to manually build executable from the source code in 
the 'unstable' branch.
+You also have the choice to [manually build executable from the source 
code](/docs/getting-started#build-and-run-kvrocks-from-source) in the 
`unstable` branch.
 
-```
+```shell
 docker run -it -p 6666:6666 apache/kvrocks:nightly --log-dir stdout
 ```
 
 Then, we can connect to kvrocks locally using `redis-cli`,
 and create an index named `testidx` consisting a tag field `a` and numeric 
field `b` with the following command:
-```
+```js
 FT.CREATE testidx ON JSON PREFIX 1 'test:' SCHEMA a TAG b NUMERIC
 ```
 
 Next, we can add some new data using Redis JSON commands:
 (Note that it is also possible to add data before running `FT.CREATE`.)
-```
+```js
 JSON.SET test:k1 $ '{"a": "x,y", "b": 11}'
 JSON.SET test:k2 $ '{"a": "y,z", "b": 22}'
 JSON.SET test:k3 $ '{"a": "x,z", "b": 33}'
 ```
 
 Finally, we can execute some SQL queries to get the desired results:
-```
+```js
 FT.SEARCHSQL 'select * from testidx where a hastag "z" and b < 30'
 ```
 
 Or an equivalent RediSearch query:
-```
+```js
 FT.SEARCH testidx '@a:{z} @b:[-inf (30]'
 ``` 
 
+If you experience any issues with KQIR, please feel free to [report 
them](https://github.com/apache/kvrocks/issues).
+
 Enjoy it!

Reply via email to