Instead of making poll_updates() create and cancel tasks every time it is called (ie. on every tick) This saves a lot of CPU, avoids a known memory leak that isn't patched yet (https://github.com/jplatte/eyeball/pull/42). It also seems to be a requirement to support async rendering code (eg. to fetch images) as they cause `poll_updates` to be re-entrant, which corrupted the timeline as `poll_updates` synchronized it through `VectorDiff` and expected not to run again while a previous call was still processing the previous `VectorDiff`.
ratatrix
Setup
- Create an account on any Matrix homeserver
- Install Rust
- Copy
.config/config.toml
or.config/config.json5
to~/.config/ratatrix/
and fill the placeholders with your credentials cargo run
Configuration
Ratatrix supports multiple configuration format: TOML, JSON/JSON5, YAML, and INI,
you may choose whichever you prefer. If you don't have a preference, pick TOML.
Example configurations for TOML and JSON5 are provided in .config
.
Default values for all settings, and their documentation, can be found in
src/default_config.toml
.
Description
Languages
Rust
100%