- Jul 30, 2014
-
-
Roman Tsisyk authored
-
- Jul 29, 2014
-
-
Konstantin Osipov authored
Update the user guide.
-
- Jul 24, 2014
-
-
Eugine Blikh authored
-
- Jul 23, 2014
-
-
Roman Tsisyk authored
-
- Jul 21, 2014
-
-
bigbes authored
1) Backport `path_find` 2) Disable debuginfo in RPM 3) Disable failing part of BSDSocket test
-
- Jul 10, 2014
-
-
Dmitry E. Oboukhov authored
-
- Jun 24, 2014
-
-
Dmitry E. Oboukhov authored
-
- Jun 09, 2014
-
-
Dmitry E. Oboukhov authored
+ fix socket:readline regexp.
-
- May 20, 2014
-
-
Dmitry E. Oboukhov authored
+ fix bsdsocket test
-
- May 19, 2014
-
-
Roman Tsisyk authored
* Move source files to appropriate location * Remove C wrapper for isysconnect/sysbind/sendto and * other functions * Remove box.socket.errno() * Change sockets to be non-blocked by * default * Code style fixes * Other minor changes
-
Dmitry E. Oboukhov authored
-
- Apr 16, 2014
-
-
Dmitry E. Oboukhov authored
-
- Mar 07, 2014
-
-
Alexandr authored
-
- Mar 06, 2014
-
-
Alexandr authored
-
- Feb 19, 2014
-
-
Dmitry E. Oboukhov authored
+ memory leak in box.net.box (timeouted responses) + remote:ping() never throw exception
-
- Feb 18, 2014
-
-
Roman Tsisyk authored
Closes #161
-
- Feb 10, 2014
-
-
Dmitry Simonenko authored
move module related tests from test/box/ to test/module/.
-
- Feb 06, 2014
-
-
Dmitry Simonenko authored
Summary: * PLUGIN_DIR -> MODULE_DIR * MODULE_DIR prefix is /usr/lib/tarantool/VERSION * MODULE_DIR automatically appends to both lua c/path * removed plugin autoload facility in src/lua/init.cc * removed admin console plugin dependencies * moved src/box/lua/sql.lua to separate module = require('box.net.sql') * moved src/plugin/pg = require('box.net.pg') * moved src/plugin/mysql = require('box.net.mysql') * default .so and .lua install is lib/tarantool/modules/{box/net/} * debian spec and tests are updated
-
- Feb 05, 2014
-
- Feb 03, 2014
-
-
Dmitry E. Oboukhov authored
-
- Jan 28, 2014
-
-
Konstantin Osipov authored
Rationale: Any error which implies a system administrator action needs to be marked explicitly in the log, so that it's easy to find and act upon. This change the number of log levels, so the default log level was bumped from 4 to 5. Installations which set the log level explicitly need to adjust their setting.
-
Konstantin Osipov authored
-
- Jan 23, 2014
-
-
Dmitry E. Oboukhov authored
+ use luaL_ref/luaL_unref to store lua scalar instead lua metatable. + add :is_closed method.
-
- Dec 31, 2013
-
-
Alexandr authored
fixes, follows from discussion https://github.com/tarantool/tarantool/issues/79#issuecomment-29309533
-
- Dec 19, 2013
-
-
Konstantin Osipov authored
-
- Dec 06, 2013
-
-
Konstantin Osipov authored
This patch implements show index and shows memory waste of the slab allocator.
-
- Nov 26, 2013
-
-
Konstantin Osipov authored
-
- Nov 25, 2013
-
-
Roman Tsisyk authored
-
Roman Tsisyk authored
-
Alexandr authored
-
- Nov 21, 2013
-
-
https://github.com/tarantool/tarantool/issues/119Konstantin Osipov authored
A dead fiber could get reused prematurely or garbage collected twice. This was because __gc could get invoked way after the fiber has finished and reused for a different coroutine. The fix is to always access fibers in Lua by fiber id.
-
Konstantin Osipov authored
Fix a hang on box.fiber.resume() of an attached fiber which gets cancelled. When the child fiber got cancelled before detach, the parent never was woken up, and would hang forever. Wake up the parent, and, in the parent, do not try to access a dead fiber.
-
Roman Tsisyk authored
-
Dmitry E. Oboukhov authored
-
Dmitry E. Oboukhov authored
-
Roman Tsisyk authored
This patch limits maximum recursion depth for luaL_packsize and luaL_packvalue functions to 16 nested tables. This check is needed to prevent a crash on recursive Lua tables.
-
- Nov 20, 2013
-
-
Dmitry E. Oboukhov authored
-
- Nov 19, 2013
-
-
Dmitry E. Oboukhov authored
-
- Nov 18, 2013
-
-
Roman Tsisyk authored
-
- Nov 16, 2013
-
-
Konstantin Osipov authored
-