forked from qiujiayu/AutoLoadCache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFST.java
62 lines (51 loc) · 1.79 KB
/
FST.java
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
53
54
55
56
57
58
59
60
61
62
package com.test;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import org.nustaq.serialization.FSTConfiguration;
import com.test.hessian.MyTO;
public class FST {
private static final FSTConfiguration conf=FSTConfiguration.getDefaultConfiguration();
static {
// conf.setCrossPlatform(false);
}
public static void main(String[] args) throws Exception {
long start=System.currentTimeMillis();
MyTO to=new MyTO();
to.setId("111");
List<String> list=new ArrayList<String>();
list.add("111");
list.add("222");
to.setList(list);
byte[] data=null;
for(int i=0; i < 1000; i++) {
data=write(to);
}
long end=System.currentTimeMillis();
System.out.println("write:" + (end - start));
System.out.println("size:" + data.length);
start=System.currentTimeMillis();
for(int i=0; i < 1000; i++) {
read(data);
}
end=System.currentTimeMillis();
System.out.println("read:" + (end - start));
Simple simple=new Simple();
simple.setAge(10);
simple.setName("test");
simple.setSex(1);
SimpleWrapper wrapper=new SimpleWrapper();
wrapper.setCacheObject(simple);
wrapper.setLastLoadTime(System.currentTimeMillis());
data=write(wrapper);
SimpleWrapper t=(SimpleWrapper)read(data);
System.out.println(t.getCacheObject().getName());
}
private static byte[] write(Object obj) throws Exception {
byte barray[]=conf.asByteArray(obj);
return barray;
}
private static Object read(byte[] data) throws Exception {
return conf.asObject(data);
}
}