You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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).
0 commit comments