-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodules.json
52 lines (52 loc) · 1.5 KB
/
modules.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[
{
"name": "flat-tree",
"description": "Map a binary tree to a vector.",
"category": "Data Structures & Algorithms"
},
{
"name": "merkle-tree-stream",
"description": "A stream that generates a merkle tree based on the incoming data.",
"category": "Data Structures & Algorithms"
},
{
"name": "sleep-parser",
"description": "Parse Dat protocol SLEEP files.",
"category": "Data Structures & Algorithms"
},
{
"name": "random-access-storage",
"description": "An abstract interface to implement reading / writing bytes to different backends from different offsets.",
"category": "Persistance"
},
{
"name": "random-access-memory",
"description": "Continuously read/write to memory using random offsets and lengths.",
"category": "Persistance"
},
{
"name": "random-access-disk",
"description": "Continuously read/write to disk using random offsets and lengths.",
"category": "Persistance"
},
{
"name": "tree-index",
"description": "Stateful tree index.",
"category": "Data Structures & Algorithms"
},
{
"name": "memory-pager",
"description": "Access memory using small fixed size buffers.",
"category": "Data Structures & Algorithms"
},
{
"name": "sparse-bitfield",
"description": "Bitfield that allocates a series of small buffers.",
"category": "Data Structures & Algorithms"
},
{
"name": "speedometer",
"description": "Measure throughput per second.",
"category": "Networking"
}
]