├── .gitignore
├── DirectMemory-Cache
├── .classpath
├── .gitignore
├── .project
├── .settings
│ ├── org.eclipse.jdt.core.prefs
│ ├── org.eclipse.ltk.core.refactoring.prefs
│ └── org.maven.ide.eclipse.prefs
├── bench.bat
├── bench.sh
├── config
│ └── logback-test.xml
├── data
│ └── benchmarks
│ │ ├── database.h2.db
│ │ └── graphs
│ │ ├── org.directmemory.serialization.test.SerializerTest-run1.html
│ │ ├── org.directmemory.serialization.test.SerializerTest-run1.json
│ │ ├── org.directmemory.serialization.test.SerializerTest-run2.html
│ │ ├── org.directmemory.serialization.test.SerializerTest-run2.json
│ │ ├── org.directmemory.serialization.test.SerializerTest-run3.html
│ │ ├── org.directmemory.serialization.test.SerializerTest-run3.json
│ │ ├── org.directmemory.serialization.test.SerializerTest-run4.html
│ │ ├── org.directmemory.serialization.test.SerializerTest-run4.json
│ │ ├── org.directmemory.serialization.test.SerializerTest-run5.html
│ │ ├── org.directmemory.serialization.test.SerializerTest-run5.json
│ │ ├── org.directmemory.serialization.test.SerializerTest.html
│ │ └── org.directmemory.serialization.test.SerializerTest.json
├── lib
│ ├── javasimon
│ │ ├── eval-0.5.jar
│ │ ├── javasimon-core-2.4.0.jar
│ │ ├── sjsxp.jar
│ │ └── stax-api-1.0.1.jar
│ ├── orientdb
│ │ ├── orient-commons-0.9.24.jar
│ │ └── orientdb-core-0.9.24.jar
│ ├── protostuff
│ │ ├── protostuff-api-1.0.0.M6.jar
│ │ ├── protostuff-benchmark-1.0.0.M6.jar
│ │ ├── protostuff-codegen-1.0.0.M6.jar
│ │ ├── protostuff-compiler-1.0.0.M6.jar
│ │ ├── protostuff-core-1.0.0.M6.jar
│ │ ├── protostuff-json-1.0.0.M6.jar
│ │ ├── protostuff-maven-plugin-1.0.0.M6.jar
│ │ ├── protostuff-model-1.0.0.M6.jar
│ │ ├── protostuff-model-json-1.0.0.M6.jar
│ │ ├── protostuff-parser-1.0.0.M6.jar
│ │ ├── protostuff-runtime-1.0.0.M6.jar
│ │ ├── protostuff-xml-1.0.0.M6.jar
│ │ └── protostuff-yaml-1.0.0.M6.jar
│ └── slf4j
│ │ ├── logback-classic-0.9.26.jar
│ │ ├── logback-core-0.9.26.jar
│ │ └── slf4j-api-1.6.1.jar
├── pom.xml
├── snapshot.cmd
└── src
│ ├── main
│ ├── aspect
│ │ └── org
│ │ │ └── directmemory
│ │ │ └── monitoring
│ │ │ └── Performance.aj
│ └── java
│ │ └── org
│ │ └── directmemory
│ │ ├── cache
│ │ └── Cache.java
│ │ ├── measures
│ │ ├── Every.java
│ │ ├── Expires.java
│ │ ├── For.java
│ │ ├── Heap.java
│ │ ├── In.java
│ │ ├── Memory.java
│ │ ├── Monitor.java
│ │ ├── Ram.java
│ │ ├── Sizing.java
│ │ └── Space.java
│ │ ├── memory
│ │ ├── MemoryManager.java
│ │ ├── OffHeapMemoryBuffer.java
│ │ └── Pointer.java
│ │ ├── misc
│ │ ├── DummyPojo.java
│ │ └── Format.java
│ │ └── serialization
│ │ ├── DummyPojoSerializer.java
│ │ ├── ProtoStuffSerializerV1.java
│ │ ├── ProtoStuffWithLinkedBufferSerializer.java
│ │ ├── Serializer.java
│ │ └── StandardSerializer.java
│ └── test
│ └── java
│ └── org
│ └── directmemory
│ ├── cache
│ └── test
│ │ ├── CacheConcurrentTests.java
│ │ ├── CacheLightConcurrentTest.java
│ │ └── TestCachePlusSerialization.java
│ ├── memory
│ └── test
│ │ ├── BaseTests.java
│ │ ├── ConcurrentTests.java
│ │ ├── ConcurrentTests2.java
│ │ ├── ConcurrentTests3.java
│ │ ├── MallocTests.java
│ │ ├── MemoryManagerTests.java
│ │ └── Starter.java
│ ├── preliminary
│ └── test
│ │ ├── MicroBenchmarks.java
│ │ └── PreliminarBenchmarks.java
│ └── serialization
│ └── test
│ └── SerializerTest.java
├── LICENSE.txt
├── Misc
├── Artwork
│ ├── Apache DirectMemory.svg
│ ├── Apache-DirectMemory-2.png
│ ├── Apache-DirectMemory-3.png
│ ├── Apache-DirectMemory-4.png
│ ├── Apache-DirectMemory-logo-medium.png
│ ├── Apache-DirectMemory-logo.png
│ ├── Apache-DirectMemory.png
│ ├── Benchmark data
│ │ ├── Benchmark.xls
│ │ ├── ConcurrentHashMap benchmark.txt
│ │ ├── Serialization comparison 2.txt
│ │ ├── Serialization comparison.txt
│ │ ├── average.PNG
│ │ ├── cachemanager2-directmemory.log
│ │ ├── orient doc vs binary.txt
│ │ └── totalTestTime.PNG
│ ├── DirectMemory-Cache-logo-medium.png
│ ├── DirectMemory-Cache-logo-small.png
│ ├── DirectMemory-Cache-logo-with-banner.png
│ ├── DirectMemory-Cache-logo.png
│ ├── DirectMemory-Cache-logo.svg
│ ├── DirectMemory-icon.png
│ └── apache penna.png
└── mvn-repo
│ └── snapshots
│ └── org
│ └── directmemory
│ └── DirectMemory-Cache
│ ├── 0.5.5-SNAPSHOT
│ ├── DirectMemory-Cache-0.5.5-20110917.125705-2.jar
│ ├── DirectMemory-Cache-0.5.5-20110917.125705-2.jar.md5
│ ├── DirectMemory-Cache-0.5.5-20110917.125705-2.jar.sha1
│ ├── DirectMemory-Cache-0.5.5-20110917.125705-2.pom
│ ├── DirectMemory-Cache-0.5.5-20110917.125705-2.pom.md5
│ ├── DirectMemory-Cache-0.5.5-20110917.125705-2.pom.sha1
│ ├── DirectMemory-Cache-0.5.5-20110917.163520-3.jar
│ ├── DirectMemory-Cache-0.5.5-20110917.163520-3.jar.md5
│ ├── DirectMemory-Cache-0.5.5-20110917.163520-3.jar.sha1
│ ├── DirectMemory-Cache-0.5.5-20110917.163520-3.pom
│ ├── DirectMemory-Cache-0.5.5-20110917.163520-3.pom.md5
│ ├── DirectMemory-Cache-0.5.5-20110917.163520-3.pom.sha1
│ ├── DirectMemory-Cache-0.5.5-20110922.062228-4.jar
│ ├── DirectMemory-Cache-0.5.5-20110922.062228-4.jar.md5
│ ├── DirectMemory-Cache-0.5.5-20110922.062228-4.jar.sha1
│ ├── DirectMemory-Cache-0.5.5-20110922.062228-4.pom
│ ├── DirectMemory-Cache-0.5.5-20110922.062228-4.pom.md5
│ ├── DirectMemory-Cache-0.5.5-20110922.062228-4.pom.sha1
│ ├── maven-metadata.xml
│ ├── maven-metadata.xml.md5
│ └── maven-metadata.xml.sha1
│ ├── maven-metadata.xml
│ ├── maven-metadata.xml.md5
│ └── maven-metadata.xml.sha1
└── README
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | /DirectMemoryExperiments/bin
3 | /Demo/DirectMemory-WebDemo/target
4 | /Demo/DirectMemory-WebDemo/logs
5 | /DirectMemoryCache/target
6 | /DirectMemory-Tests/target
7 | /DirectMemory-Cache/target/test-classes
8 | /DirectMemory-Cache/target/classes
9 | /Demo/DirectMemory-StandaloneDemo/logs/directmemory.log
--------------------------------------------------------------------------------
/DirectMemory-Cache/.classpath:
--------------------------------------------------------------------------------
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 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/.gitignore:
--------------------------------------------------------------------------------
1 | /dm-test.jar
2 | /logs
3 | /target
4 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | DirectMemory-Cache
4 | DirectMemory Cache is a multi layered cache implementation featuring off-heap memory management (a-la BigMemory) to enable efficient handling of a large number of java objects without affecting jvm garbage collection performance. NO_M2ECLIPSE_SUPPORT: Project files created with the maven-eclipse-plugin are not supported in M2Eclipse.
5 |
6 |
7 |
8 |
9 | org.eclipse.ajdt.core.ajbuilder
10 |
11 |
12 |
13 |
14 |
15 | org.eclipse.ajdt.ui.ajnature
16 | org.eclipse.jdt.core.javanature
17 |
18 |
19 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
1 | #Sun Sep 04 00:32:46 CEST 2011
2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
3 | eclipse.preferences.version=1
4 | org.eclipse.jdt.core.compiler.source=1.6
5 | org.eclipse.jdt.core.compiler.compliance=1.6
6 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/.settings/org.eclipse.ltk.core.refactoring.prefs:
--------------------------------------------------------------------------------
1 | #Sat Jan 01 23:57:03 CET 2011
2 | eclipse.preferences.version=1
3 | org.eclipse.ltk.core.refactoring.enable.project.refactoring.history=false
4 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/.settings/org.maven.ide.eclipse.prefs:
--------------------------------------------------------------------------------
1 | #Thu Dec 30 12:50:14 CET 2010
2 | activeProfiles=
3 | eclipse.preferences.version=1
4 | fullBuildGoals=process-test-resources
5 | resolveWorkspaceProjects=true
6 | resourceFilterGoals=process-resources resources\:testResources
7 | skipCompilerPlugin=true
8 | version=1
9 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/bench.bat:
--------------------------------------------------------------------------------
1 | mvn test -Dtest=SerializerTest -Djub.customkey=%1 -Djub.consumers=CONSOLE,XML,H2 -Djub.db.file=data/benchmarks/database -Djub.xml.file=logs/benchmarks.xml -Djub.charts.dir=data/benchmarks/graphs
2 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/bench.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | mvn test -Djub.customkey=$1 -Dtest=MicroBenchmarks -Djub.consumers=CONSOLE,XML,H2 -Djub.db.file=data/benchmarks/database -Djub.xml.file=logs/benchmarks.xml -Djub.charts.dir=data/benchmarks/graphs
3 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/config/logback-test.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | %d{HH:mm:ss.SSS} [%thread] %-5level %method - %msg%n
7 |
8 |
9 |
10 |
11 | logs/directmemory.log
12 |
13 | %d{HH:mm:ss.SSS} [%thread] %-5level %method - %msg%n
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/data/benchmarks/database.h2.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/raffaeleguidi/DirectMemory/f129b94a89b3ce291f7b01c78b8809870a265daf/DirectMemory-Cache/data/benchmarks/database.h2.db
--------------------------------------------------------------------------------
/DirectMemory-Cache/data/benchmarks/graphs/org.directmemory.serialization.test.SerializerTest-run1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
125 |
Benchmark results for methods in class org.directmemory.serialization.test.SerializerTest
126 |
127 |
128 |
129 |
130 |
131 |
132 | Click on table headers to change the sorting order and redraw the chart.
133 |
134 |
135 |
136 |
137 |
Run ID: 1
138 | Run timestamp: 2011-09-17 14:25:23.709
139 | JVM: 1.6.0_24-b07
140 | OS: amd64
141 | Custom key: a
142 |
143 |
144 |
145 |
146 |
147 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/data/benchmarks/graphs/org.directmemory.serialization.test.SerializerTest-run1.json:
--------------------------------------------------------------------------------
1 | {
2 | "cols": [
3 | {"label": "method", "type": "string"},
4 | {"label": "Average time [s]", "type": "number"},
5 | {"label": "StdDev", "type": "number"},
6 | {"label": "GC average [s]", "type": "number"},
7 | {"label": "GC time [s]", "type": "number"},
8 | {"label": "StdDev", "type": "number"},
9 | {"label": "GC calls", "type": "number"},
10 | {"label": "benchmark rounds", "type": "number"},
11 | {"label": "warmup rounds", "type": "number"},
12 | {"label": "Total benchmark time", "type": "number"},
13 | {"label": "Total warmup time", "type": "number"}
14 | ],
15 | "rows": [
16 | {"c": [{"v": "ProtostuffTest"}, {"v": 2.49}, {"v": 0.0}, {"v": 0.0}, {"v": 0.02}, {"v": 0.0}, {"v": 6}, {"v": 1}, {"v": 0}, {"v": 2.37}, {"v": 0.12}]},
17 | {"c": [{"v": "ProtostuffV2Test"}, {"v": 3.24}, {"v": 0.0}, {"v": 0.0}, {"v": 0.01}, {"v": 0.0}, {"v": 7}, {"v": 1}, {"v": 0}, {"v": 3.24}, {"v": 0.0}]},
18 | {"c": [{"v": "StandardTest"}, {"v": 9.23}, {"v": 0.0}, {"v": 0.0}, {"v": 0.03}, {"v": 0.0}, {"v": 18}, {"v": 1}, {"v": 0}, {"v": 9.23}, {"v": 0.0}]}
19 | ]}
20 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/data/benchmarks/graphs/org.directmemory.serialization.test.SerializerTest-run2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
125 |
Benchmark results for methods in class org.directmemory.serialization.test.SerializerTest
126 |
127 |
128 |
129 |
130 |
131 |
132 | Click on table headers to change the sorting order and redraw the chart.
133 |
134 |
135 |
136 |
137 |
Run ID: 2
138 | Run timestamp: 2011-09-17 14:29:23.094
139 | JVM: 1.6.0_24-b07
140 | OS: amd64
141 | Custom key:
142 |
143 |
144 |
145 |
146 |
147 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/data/benchmarks/graphs/org.directmemory.serialization.test.SerializerTest-run2.json:
--------------------------------------------------------------------------------
1 | {
2 | "cols": [
3 | {"label": "method", "type": "string"},
4 | {"label": "Average time [s]", "type": "number"},
5 | {"label": "StdDev", "type": "number"},
6 | {"label": "GC average [s]", "type": "number"},
7 | {"label": "GC time [s]", "type": "number"},
8 | {"label": "StdDev", "type": "number"},
9 | {"label": "GC calls", "type": "number"},
10 | {"label": "benchmark rounds", "type": "number"},
11 | {"label": "warmup rounds", "type": "number"},
12 | {"label": "Total benchmark time", "type": "number"},
13 | {"label": "Total warmup time", "type": "number"}
14 | ],
15 | "rows": [
16 | {"c": [{"v": "ProtostuffTest"}, {"v": 1.73}, {"v": 0.07}, {"v": 0.0}, {"v": 0.04}, {"v": 0.0}, {"v": 26}, {"v": 5}, {"v": 1}, {"v": 8.66}, {"v": 2.36}]},
17 | {"c": [{"v": "ProtostuffV2Test"}, {"v": 3.11}, {"v": 0.1}, {"v": 0.0}, {"v": 0.03}, {"v": 0.0}, {"v": 32}, {"v": 5}, {"v": 1}, {"v": 15.53}, {"v": 3.09}]},
18 | {"c": [{"v": "StandardTest"}, {"v": 8.37}, {"v": 0.06}, {"v": 0.0}, {"v": 0.04}, {"v": 0.0}, {"v": 91}, {"v": 5}, {"v": 1}, {"v": 41.86}, {"v": 9.44}]}
19 | ]}
20 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/data/benchmarks/graphs/org.directmemory.serialization.test.SerializerTest-run3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
125 |
Benchmark results for methods in class org.directmemory.serialization.test.SerializerTest
126 |
127 |
128 |
129 |
130 |
131 |
132 | Click on table headers to change the sorting order and redraw the chart.
133 |
134 |
135 |
136 |
137 |
Run ID: 3
138 | Run timestamp: 2011-09-17 14:32:52.396
139 | JVM: 1.6.0_24-b07
140 | OS: amd64
141 | Custom key:
142 |
143 |
144 |
145 |
146 |
147 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/data/benchmarks/graphs/org.directmemory.serialization.test.SerializerTest-run3.json:
--------------------------------------------------------------------------------
1 | {
2 | "cols": [
3 | {"label": "method", "type": "string"},
4 | {"label": "Average time [s]", "type": "number"},
5 | {"label": "StdDev", "type": "number"},
6 | {"label": "GC average [s]", "type": "number"},
7 | {"label": "GC time [s]", "type": "number"},
8 | {"label": "StdDev", "type": "number"},
9 | {"label": "GC calls", "type": "number"},
10 | {"label": "benchmark rounds", "type": "number"},
11 | {"label": "warmup rounds", "type": "number"},
12 | {"label": "Total benchmark time", "type": "number"},
13 | {"label": "Total warmup time", "type": "number"}
14 | ],
15 | "rows": [
16 | {"c": [{"v": "ProtostuffTest"}, {"v": 1.66}, {"v": 0.01}, {"v": 0.0}, {"v": 0.01}, {"v": 0.0}, {"v": 26}, {"v": 5}, {"v": 1}, {"v": 8.31}, {"v": 2.3}]},
17 | {"c": [{"v": "ProtostuffV2Test"}, {"v": 3.49}, {"v": 0.0}, {"v": 0.0}, {"v": 0.02}, {"v": 0.0}, {"v": 41}, {"v": 5}, {"v": 1}, {"v": 17.45}, {"v": 3.56}]},
18 | {"c": [{"v": "StandardTest"}, {"v": 8.13}, {"v": 0.08}, {"v": 0.0}, {"v": 0.08}, {"v": 0.0}, {"v": 90}, {"v": 5}, {"v": 1}, {"v": 40.64}, {"v": 9.07}]}
19 | ]}
20 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/data/benchmarks/graphs/org.directmemory.serialization.test.SerializerTest-run4.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
125 |
Benchmark results for methods in class org.directmemory.serialization.test.SerializerTest
126 |
127 |
128 |
129 |
130 |
131 |
132 | Click on table headers to change the sorting order and redraw the chart.
133 |
134 |
135 |
136 |
137 |
Run ID: 4
138 | Run timestamp: 2011-09-17 14:37:21.226
139 | JVM: 1.6.0_24-b07
140 | OS: amd64
141 | Custom key:
142 |
143 |
144 |
145 |
146 |
147 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/data/benchmarks/graphs/org.directmemory.serialization.test.SerializerTest-run4.json:
--------------------------------------------------------------------------------
1 | {
2 | "cols": [
3 | {"label": "method", "type": "string"},
4 | {"label": "Average time [s]", "type": "number"},
5 | {"label": "StdDev", "type": "number"},
6 | {"label": "GC average [s]", "type": "number"},
7 | {"label": "GC time [s]", "type": "number"},
8 | {"label": "StdDev", "type": "number"},
9 | {"label": "GC calls", "type": "number"},
10 | {"label": "benchmark rounds", "type": "number"},
11 | {"label": "warmup rounds", "type": "number"},
12 | {"label": "Total benchmark time", "type": "number"},
13 | {"label": "Total warmup time", "type": "number"}
14 | ],
15 | "rows": [
16 | {"c": [{"v": "ProtostuffTest"}, {"v": 1.67}, {"v": 0.02}, {"v": 0.0}, {"v": 0.01}, {"v": 0.0}, {"v": 26}, {"v": 5}, {"v": 1}, {"v": 8.36}, {"v": 2.3}]},
17 | {"c": [{"v": "ProtostuffV2Test"}, {"v": 3.58}, {"v": 0.02}, {"v": 0.0}, {"v": 0.02}, {"v": 0.0}, {"v": 43}, {"v": 5}, {"v": 1}, {"v": 17.91}, {"v": 3.64}]},
18 | {"c": [{"v": "StandardTest"}, {"v": 8.02}, {"v": 0.02}, {"v": 0.0}, {"v": 0.06}, {"v": 0.0}, {"v": 91}, {"v": 5}, {"v": 1}, {"v": 40.08}, {"v": 9.17}]}
19 | ]}
20 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/data/benchmarks/graphs/org.directmemory.serialization.test.SerializerTest-run5.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
125 |
Benchmark results for methods in class org.directmemory.serialization.test.SerializerTest
126 |
127 |
128 |
129 |
130 |
131 |
132 | Click on table headers to change the sorting order and redraw the chart.
133 |
134 |
135 |
136 |
137 |
Run ID: 5
138 | Run timestamp: 2011-09-17 14:41:59.63
139 | JVM: 1.6.0_24-b07
140 | OS: amd64
141 | Custom key:
142 |
143 |
144 |
145 |
146 |
147 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/data/benchmarks/graphs/org.directmemory.serialization.test.SerializerTest-run5.json:
--------------------------------------------------------------------------------
1 | {
2 | "cols": [
3 | {"label": "method", "type": "string"},
4 | {"label": "Average time [s]", "type": "number"},
5 | {"label": "StdDev", "type": "number"},
6 | {"label": "GC average [s]", "type": "number"},
7 | {"label": "GC time [s]", "type": "number"},
8 | {"label": "StdDev", "type": "number"},
9 | {"label": "GC calls", "type": "number"},
10 | {"label": "benchmark rounds", "type": "number"},
11 | {"label": "warmup rounds", "type": "number"},
12 | {"label": "Total benchmark time", "type": "number"},
13 | {"label": "Total warmup time", "type": "number"}
14 | ],
15 | "rows": [
16 | {"c": [{"v": "ProtostuffTest"}, {"v": 1.6}, {"v": 0.07}, {"v": 0.0}, {"v": 0.03}, {"v": 0.0}, {"v": 26}, {"v": 5}, {"v": 1}, {"v": 7.98}, {"v": 2.3}]},
17 | {"c": [{"v": "ProtostuffV2Test"}, {"v": 2.44}, {"v": 0.01}, {"v": 0.0}, {"v": 0.02}, {"v": 0.0}, {"v": 34}, {"v": 5}, {"v": 1}, {"v": 12.22}, {"v": 2.51}]},
18 | {"c": [{"v": "StandardTest"}, {"v": 8.02}, {"v": 0.12}, {"v": 0.0}, {"v": 0.05}, {"v": 0.0}, {"v": 91}, {"v": 5}, {"v": 1}, {"v": 40.1}, {"v": 9.08}]}
19 | ]}
20 |
--------------------------------------------------------------------------------
/DirectMemory-Cache/data/benchmarks/graphs/org.directmemory.serialization.test.SerializerTest.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |