How would you model timeseries on top of Aerospike?
Using 1KB chunks of datapoints as simple K/V?
Or using Large Data Types [1] like Large Stack [2]?
Large Stack
A Large Stack collection is naturally aligned with time series data
because the stack preserves the insert order.
Stacks provide Last In First Out (LIFO) order,
so it's a convenient mechanism for tracking "recent" data.
Usage examples include:
Show me the last N events
Search the last N actions with a filter
Show me all documents in reverse insert order