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
Explain the structure (supervision trees, workers, what's what and what it does)
Set up a basic use (supervision trees, behaviors, etc). Expose every configuration option and behavior available, explain what it's used for, why it's there, and how it's used exactly.
Explain the different use cases with record examples (KPL, custom KPL, non-KPL)
Explain checkpointing (with and without subrecords)
There is some great doc scattered throughout the sources. These should be exposed in the form of a comprehensive wiki or README so a dev can see upfront what this is all about.
The text was updated successfully, but these errors were encountered:
* make the should_deflate flag part of the state (#2)
To control if it should or not deflate, the library was
accepting a flag on kpl_agg:finish/2.
But, this wasn't applied to aggregated records created implicitly
when adding new items.
This PR makes the should_deflate part of the state, and allow it
to be initialized using kpl_agg:new/1 (default is to not deflate).
Note:
It has a backward incompatible change, as kpl_agg:finish/2 is removed.
* Avoid cuadratic complexity, keep track of current list length (#3)
Do not calculate length(List) on each item addition, keep a track
of the current buffer length.
* Remove dialyzer warnings
* Fix #stream_record.timestamp type
More examples are needed for:
There is some great doc scattered throughout the sources. These should be exposed in the form of a comprehensive wiki or README so a dev can see upfront what this is all about.
The text was updated successfully, but these errors were encountered: