File: cached_compile.dot

package info (click to toggle)
xcache 2.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,724 kB
  • sloc: ansic: 8,175; php: 4,557; awk: 285; sh: 135; makefile: 75
file content (31 lines) | stat: -rwxr-xr-x 718 bytes parent folder | download | duplicates (2)
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
digraph tree {
	subgraph cluster_compiling {
		label="compiling";
		php_compile;
		php_store;
		entry_store;
	}
	error [color=red];
	origin_compile [color=red]

	begin -> origin_compile [label="compiling", color=red];

	begin -> entry_init_key -> entry_lookup;
	edge [label=hit, color=blue]
	entry_lookup -> restore;
	php_lookup -> entry_store;
	edge [label=miss, color=green]
	entry_lookup -> md5_init;
	md5_init -> php_lookup;
	php_lookup -> php_compile;

	edge [label="", color=""]
	php_lookup -> origin_compile [label="miss but compiling", color=red];
	php_compile -> php_store -> entry_store -> restore;

	edge [color=red];
	md5_init -> error;
	php_compile -> error;
	php_store -> error;
	entry_store -> error;
}