-
Notifications
You must be signed in to change notification settings - Fork 36
/
CHANGES
63 lines (52 loc) · 2.64 KB
/
CHANGES
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
63
2015-07-13 Yamashita Yuu <peek824545201@gmail.com>
* Release: 0.5.0
* KeyValueStoreSessionManager triggers unnecessary session write on load (#16, #17)
* Updated XStream (1.4.4 -> 1.4.7) (#25)
* Update SpyMemcached (2.8.12 -> 2.12.0) (#28)
2013-06-12 Yamashita Yuu <yamashita@geishatokyo.com>
* Release: 0.4.0
* Update to Jetty 9.
* Change target JVM to Java 7 since Jetty 9 only supports Java 7 or later.
* Update serialization libraries; kryo (1.0.4 -> 2.21), XStream (1.4.1 -> 1.4.4)
* Update memcached clients; SpyMemcached (2.8.10 -> 2.8.12), XMemcached (1.3.9 -> 1.4.1)
2012-09-19 Yamashita Yuu <yamashita@geishatokyo.com>
* Release: 0.3.1
* Delete invalidaetd sessions from memcached as soon as it is invalidated.
Thanks Hridayesh Gupta.
* Changed project structure. Merged serializer packages into jetty-nosql-kvs.
2012-08-22 Yamashita Yuu <yamashita@geishatokyo.com>
* Release: 0.3.0
* Made "non-sticky" mode as default. Now no sessions are cached in jetty's JVM heap.
* Fixed session deserialization error with XStream (963f4c33)
2012-03-20 Yamashita Yuu <yamashita@geishatokyo.com>
* Release: 0.2.1
* Accept comma-splitted memcached server list.
* Changed repository structure. Merged git submodules into single git repository.
2012-02-02 Yamashita Yuu <yamashita@geishatokyo.com>
* Release: 0.2.0
* Added KeyValueStore session managers to implement KVS client other than memcached.
* Load webapp context's class loader on object deserialization if available.
Thanks Daniel Peters.
* Added memcached mock object to run tests without actual memcached.
2011-10-12 Yamashita Yuu <yamashita@geishatokyo.com>
* Release: 0.1.1
* Added XStream transcoder.
* Changed project structure. Now all relating projects are in jetty-nosql-memcached-parent.
2011-10-06 Yamashita Yuu <yamashita@geishatokyo.com>
* Release: 0.1.0
* CAUTION: incompatible session format with previous releases. all sessions will be discarded.
* Implemented pluggable session format. Supported formats are Java Serializable and Kryo.
https://github.com/yyuu/jetty-nosql-memcached-kryo
2011-10-04 Yamashita Yuu <yamashita@geishatokyo.com>
* Release: 0.0.4
* Removed scavenger thread. Now using record expiration of memcached for scavenge.
2011-10-03 Yamashita Yuu <yamashita@geishatokyo.com>
* Release: 0.0.3
* Added transcoder for spymemcached to support Kyoto Tycoon's ktplugservmemc.
* Forked RedisSessionManager to new projecty jetty-nosql-redis.
2011-09-13 Yamashita Yuu <yamashita@geishatokyo.com>
* Release: 0.0.2
* Added RedisSessionManager
2011-09-12 Yamashita Yuu <yamashita@geishatokyo.com>
* Release: 0.0.1
* Initial release