Skip to content

Commit f1b6a12

Browse files
Release 0.14.0
Overview This release introduces vshard group and non-default vshard routers support. To use a space Cartridge vshard group, pass group name to a request `vshard_group` option. ```lua local res, err = crud.select('customers', {{'<=', 'age', 35}}, {first = 10, vshard_group = 'hot'}) ``` To use non-default vshard router, pass router object to a request `vshard_group` option. ```lua local my_router = vshard.router.new(name, cfg) local res, err = crud.select('customers', {{'<=', 'age', 35}}, {first = 10, vshard_group = my_router}) ``` New features * vshard group and non-default vshard routers support (#44). Changes * Deprecate using space id in crud.len (#255).
1 parent d6f7666 commit f1b6a12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [0.14.0] - 13-09-22
99

1010
### Added
1111
* Support `vshard_router` option in operations for Cartridge vshard groups

0 commit comments

Comments
 (0)