Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/features.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ features:
- Entry Processor
- Built-in Predicates
- Listener with Predicate
- Fast Aggregations
- Aggregations
- Projections
- Near Cache Support
- Programmatic Configuration
Expand Down
10 changes: 5 additions & 5 deletions docs/using_python_client_with_hazelcast_imdg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2074,13 +2074,13 @@ using the ``next_page()`` method.
.. Note:: ``PagingPredicate``, also known as Order & Limit, is not supported in
Transactional Context.

Fast-Aggregations
Aggregations
~~~~~~~~~~~~~~~~~

Fast-Aggregations feature provides some aggregate functions, such as ``sum``,
``average``, ``max``, and ``min``, on top of Hazelcast ``Map`` entries. Their
performance is high since they run in parallel for each partition and are
highly optimized for speed and low memory consumption.
Aggregations allow computing a value of some function (e.g ``sum`` or ``max``)
over the stored map entries. The computation is performed in a fully
distributed manner, so no data other than the computed function value is
transferred to the client, making the computation fast.

The ``aggregator`` module provides a wide variety of built-in aggregators. The
full list is presented below:
Expand Down