Skip to content

Latest commit

 

History

History

burst-zap

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Burst

Zap is set of fast and memory efficient collector data structures that are used during scans to collect results that are categorized into two groups:

  1. Ephemeral Lifetime Collectors: data collected during a scan, and used during the scan, but not passed back as the results/range of the scan function
    1. Wheels
    2. Tablets
    3. Routes
  2. Scan Lifetime Collectors: data collected during a scan and passed back as the part of the results/range of the scan function.
  3. Cubes
  4. Shrubs

Because scans are inner loop operations on potentially enormous datasets, collectors are designed to be extremely fast and memory efficient (low GC pressure).

Dependencies

This is built on top of:

  • Tesla Native Memory Support
  • Felt Language Toolkit

------ HOME --------------------------------------------