Event Sourcing - Kafka as an event source article.
https://www.confluent.io/blog/event-sourcing-cqrs-stream-processing-apache-kafka-whats-connection/
https://www.confluent.io/blog/event-sourcing-cqrs-stream-processing-apache-kafka-whats-connection/
Eventually consistency mechanism in distributed systems. https://medium.com/@istanbul_techie/a-look-at-conflict-free-replicated-data-types-crdt-221a5f629e7e ...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 use serde::ser::{ Serialize, Serializer }; use serde::de::...
Github https://github.com/rust-lang-nursery/error-chain Example) https://github.com/rust-lang-nursery/error-chain/blob/master/examples/quickstart.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 use std::ops::{Index, IndexMut}; #[derive(Debug)] pub struct ImageArray2 { dat...