NDatabase - Fast data model creation - Powerful Async / Sync API icon

NDatabase - Fast data model creation - Powerful Async / Sync API -----

Lightweight opensource and easy to use INDEXED key-value database multi-platform framework



0.5.0 - add compute TOP K
In this version, a new method is now available in order to generate a top K.
Very useful if you want to display a ranking !

example :

Code (Java):
Comparator <PlayerEntity > comparator = (o1, o2 ) -> o2. getScore ( ) - o1. getScore ( ) ;
repository. computeTopAsync ( 3, comparator )
        . thenAsync ( (playerEntities ) -> {
            playerEntities. get ( 0 ) ; // TOP 1
            playerEntities. get ( 1 ) ; // TOP 2
            playerEntities. get ( 2 ) ; // TOP 3
        } ) ;
----------, Feb 18, 2023
Resource Information
Author:
----------
Total Downloads: 1,070
First Release: Feb 3, 2023
Last Update: Dec 16, 2024
Category: ---------------
All-Time Rating:
4 ratings
Find more info at github.com...
Version -----
Released: --------------------
Downloads: ------
Version Rating:
----------------------
-- ratings