Overview of the Redis data structures

This commit is contained in:
Alexandre Dulaunoy 2015-01-10 23:06:11 +01:00
parent bdbbeb45eb
commit f08340aeff
2 changed files with 21 additions and 0 deletions

21
doc/redis-datastruct.dot Normal file
View file

@ -0,0 +1,21 @@
digraph g{
a -> b
a [label="processed",shape=box,fillcolor="white",style="filled"];
b [label="{Malware MD5, Malware MD5, ...}",shape=box,fillcolor="palegreen",style="filled,rounded"];
c -> d
c [label="type",shape=box,fillcolor="white",style="filled"];
d [label="{http.user_agent, http.server, ...}",shape=box,fillcolor="palegreen",style="filled,rounded"];
d -> g [dir=none];
g [label="e:http.user_agent", shape=box];
g -> h
h [label="{Mozilla...., Mozilla/4.0..., Wget...,... }",shape=box,fillcolor="palegreen",style="filled,rounded"];
h -> e [dir=none];
e -> f
e [label="v:MD5('Mozilla....')",shape=box,fillcolor="white",style="filled"];
f [label="{Malware MD5, Malware MD5, ...}",shape=box,fillcolor="palegreen",style="filled,rounded"];
z [label="key", shape=box];
y [label="set", shape=box, fillcolor="palegreen",style="filled,rounded"];
}

BIN
doc/redis-datastruct.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB