Releases: jiangwenyuan/nuster
v2.0.1.18
Upgrade HAProxy to v1.8.13
v2.0.0.18
v2.0.0.18 - 2018-07-06
Add NoSQL mode.
NuSTER can be used as a RESTful NoSQL cache server, using HTTP POST/GET/DELETE
to set/get/delete Key/Value object.
It can be used as an internal NoSQL cache sits between your application and database like Memcached or Redis as well as a user facing NoSQL cache that sits between end user and your application.
It supports headers, cookies, so you can store per-user data to same endpoint.
- All features from HAProxy(HTTPS, HTTP/2, ACL, etc)
- Conditional cache
- Internal KV cache
- User facing RESTful cache
- Support any kind of data
- Support all programming languages as long as HTTP is supported
Versioning
Previously nuster used HAPROXY_VERSION.NUSTER_VERSION(eg, v1.8.8.3) which is very straightforward to find out the base HAProxy version, but very hard to tell whether it is a major release or just bug fix from a single NUSTER_VERSION.
Starting from v1.8.8.3, nuster uses a different version system as MAJOR.MINOR.PATCH.HAPROXY_BRANCH.
- MAJOR: big feature release of nuster
- MINOR: small features, haproxy branch update
- PATCH: bug fixes, haproxy minor updates
- HAPROXY_BRANCH: 17 stands for v1.7.x, 18 for v1.8.x
v1.1.1.18
Merge HAProxy v1.8.12
v1.1.0.18
New version v1.1.0.18, previous v1.8.8.3
v1.0.0.17
v1.0.0.17, previous v1.7.11.3
Previously nuster used HAPROXY_VERSION.NUSTER_VERSION(eg, v1.8.8.3) which is very straightforward to find out the base HAProxy version, but very hard to tell whether it is a major r
Starting from v1.8.8.3, nuster uses a different version system as MAJOR.MINOR.PATCH.HAPROXY_BRANCH.
- MAJOR: big feature release of nuster
- MINOR: small features, haproxy branch update
- PATCH: bug fixes, haproxy minor updates
- HAPROXY_BRANCH: 17 stands for v1.7.x, 18 for v1.8.x
v1.8.8.3
1.8.8.3 - 2018-06-08
Fixed
- Broken rule key parser in config file (Thanks to Nelson)
v1.7.11.3
1.7.11.3 - 2018-06-08
Fixed
- Broken rule key parser in config file (Thanks to Nelson)
v1.8.8.2
Fixed
- Rare case segfault when comparing a valid entry with null entry->key (Thanks to Martin)
- Incorrect address when appending separator to long cache key (Thanks to Klaus)
v1.7.11.2
Fixed
- Rare case segfault when comparing a valid entry with null entry->key (Thanks to Martin)
- Incorrect address when appending separator to long cache key (Thanks to Klaus)
v1.8.8.1
Upgrade to HAProxy v1.8.8, HTTP2 support, multiple threads