- Oct 25, 2022
-
-
- Oct 21, 2022
-
-
Georgy Moshkin authored
-
- Oct 19, 2022
-
-
Yaroslav Dynnikov authored
-
Yaroslav Dynnikov authored
Example: ```console tarantool> picolib.whoami() --- - raft_id: 1 cluster_id: demo instance_id: i1 ... tarantool> picolib.peer_info("i1") --- - raft_id: 1 instance_id: i1 instance_uuid: 68d4a766-4144-3248-aeb4-e212356716e4 replicaset_uuid: e0df68c5-e7f9-395f-86b3-30ad9e1b7b07 replicaset_id: r1 advertise_address: localhost:3301 target_grade: Online current_grade: Online ... ```
-
- Oct 18, 2022
-
-
Georgy Moshkin authored
-
- Oct 17, 2022
-
-
- Oct 16, 2022
-
-
Valentin Syrovatskiy authored
-
- Oct 06, 2022
-
-
- Sep 29, 2022
-
-
Yaroslav Dynnikov authored
-
Valentin Syrovatskiy authored
-
- Sep 22, 2022
-
-
Yaroslav Dynnikov authored
-
Yaroslav Dynnikov authored
1. Encapsulate topology access in a dedicated function. 2. Remove obsolete CachedCell
-
- Sep 21, 2022
-
-
Georgy Moshkin authored
-
Georgy Moshkin authored
-
Georgy Moshkin authored
-
- Sep 20, 2022
-
-
Georgy Moshkin authored
-
Georgy Moshkin authored
-
-
- Sep 16, 2022
-
-
Yaroslav Dynnikov authored
`KVCell` contains an optional value and provides access by key in two flavors: ```rust fn take_or_drop(&mut self, key: &K) -> Option<T> fn take_or_keep(&mut self, key: &K) -> Option<T> ``` Both return `Some` value only if provided key matches the contained one. The behavior differs when the provided key doesn't match: - `take_or_drop` always leaves the cell empty. It supersedes `CachedCell` and copies its behavior. - `take_or_keep` retains contained value. It's a replacement for `JointStateLatch`.
-
- Sep 15, 2022
-
-
replication_factor now goes into cluster_state
-
- Sep 14, 2022
-
-
Georgy Moshkin authored
-
- Sep 13, 2022
-
-
Georgy Moshkin authored
-
- Sep 08, 2022
-
-
Georgy Moshkin authored
-
- Sep 02, 2022
-
-
Valentin Syrovatskiy authored
-
Valentin Syrovatskiy authored
-
Valentin Syrovatskiy authored
-
- Aug 18, 2022
-
-
Valentin Syrovatskiy authored
-
- Aug 16, 2022
-
-
Georgy Moshkin authored
To highlight all the logging messages containing the given key do this: * rust: `tlog::highlight_key(log_key, Some(color))`. * lua: `picolib.log.highlight_key(log_key, color)`. To disable highlight for the given key do this: * rust: `tlog::highlight_key(log_key, None)`. * lua: `picolib.log.highlight_key(log_key)`. To disable highlighting of all keys do this: * rust: `tlog::clear_highlight()`. * lua: `picolib.log.clear_highlight()`.
-
Georgy Moshkin authored
-
Georgy Moshkin authored
-
- Aug 15, 2022
-
-