You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A button that automatically executes the Redis commands (without inserting it into the Editor). Such buttons will be displayed with the "Play" icon inside.
134
-
The code syntax is the same as for the manually executed buttons, just indicate the `redis-auto` (instead of `redis`) before the button.
135
-
136
-
````
137
-
```redis-auto Create
138
-
// Let's add three documents as Hashes.
139
-
// Each document represents a building permit.
140
-
141
-
HSET permit:1 "description" "To reconstruct a single detached house with a front covered veranda." "construction_value" 42000 "building_type" "single detached house" "address_city" "Lisbon" "work_type" "demolition,reconstruction" "permit_timestamp" "1602156878" "address_street" "R. Da Palma" "location" "38.717746, -9.135839"
| results | * _single_<br/>*_group_| If enabled, then pipeline mode is ignored |Enable/disable the group mode to display the command results in a batch or as separate ones.|
147
+
| results | * _single_<br/>*_group_<br/>*_silent_| If enabled, then pipeline mode is ignored |* _single_ - Disable the group mode to display the command results in a batch or as separate ones.<br/>*_group_ - Enable the group mode <br/>*_silent_: <br/>  1. Enable the group mode <br/>  2. Auto collapse the result <br/>  3. Show only error commands in the results|
168
148
| mode | * _ascii_<br/>*_raw_|| Enable/disable the raw mode to display command results. |
169
149
| pipeline | any integer number || Configure the number of commands in the pipeline. 0 or 1 pipelines every command. |
150
+
| auto | * _true_<br/>*_false_|| Configure the auto execute commands after click on the button |
A button that automatically executes the Redis commands (without inserting it into the Editor). Such buttons will be displayed with the "Play" icon inside.
174
+
The code syntax is the same as for the manually executed buttons, just insert parameter `[auto=true]` with any other parameters before the button.
175
+
176
+
````
177
+
```redis:[auto=true;mode=raw] Create
178
+
// Let's add three documents as Hashes.
179
+
// Each document represents a building permit.
180
+
HSET permit:1 "description" "To reconstruct a single detached house with a front covered veranda." "construction_value" 42000 "building_type" "single detached house" "address_city" "Lisbon" "work_type" "demolition,reconstruction" "permit_timestamp" "1602156878" "address_street" "R. Da Palma" "location" "38.717746, -9.135839"
HSET permit:3 "description" "New house build" "construction_value" 260000 "building_type" "house" "address_city" "Lagos" "work_type" "construction;design" "permit_timestamp" "1612947600" "address_street" "R. Antonio Gedeao" "location" "37.114864, -8.668521"
183
+
```
184
+
````
185
+
189
186
## Autoupdate
190
187
Our application supports the ability to quickly update the static files of the Enablement area so that we can provide users with up-to-date information.
0 commit comments