Branch: refs/heads/fiber-ipc
Home: https://github.com/mailru/tarantool
Commit: c95860d0e91f88c3a72f153ce90d87e74e744473
https://github.com/mailru/tarantool/commit/c95860d0e91f88c3a72f153ce90d87e74e744473
Author: Konstantin Osipov <[email protected]>
Date: 2012-10-04 (Thu, 04 Oct 2012)
Changed paths:
M src/tarantool_lua.m
Log Message:
-----------
Minor cleanup of non-working code (perhaps a bad idea).
Commit: 5f02da2d1a98af448696a4fc7033efaafb2b1c97
https://github.com/mailru/tarantool/commit/5f02da2d1a98af448696a4fc7033efaafb2b1c97
Author: Mons Anderson <[email protected]>
Date: 2012-10-05 (Fri, 05 Oct 2012)
Changed paths:
M doc/user/stored-procedures.xml
M src/tarantool_lua.m
M test/box/lua.result
M test/box/lua.test
Log Message:
-----------
Add support for 16-bit numbers in box.pack and box.unpack
- Add support for [sS] format in box.pack (16-bit integers)
- Add support for [b] ans [s] format in box.unpack (8 and 16-bit integers)
- Fix docs
Commit: f15c8d526637f8098c48761395965549c7868069
https://github.com/mailru/tarantool/commit/f15c8d526637f8098c48761395965549c7868069
Author: Konstantin Osipov <[email protected]>
Date: 2012-10-04 (Thu, 04 Oct 2012)
Changed paths:
M doc/user/stored-procedures.xml
Log Message:
-----------
Fix a typo in the manual.
Commit: 98471c50c359851f2ad5c3572afe0617c9a3af12
https://github.com/mailru/tarantool/commit/98471c50c359851f2ad5c3572afe0617c9a3af12
Author: Konstantin Osipov <[email protected]>
Date: 2012-10-04 (Thu, 04 Oct 2012)
Changed paths:
M doc/user/stored-procedures.xml
M src/tarantool_lua.m
M test/box/lua.result
M test/box/lua.test
Log Message:
-----------
Merge branch 'box-pack-16-bit'
Conflicts:
test/box/lua.result
Commit: 6db32bdd8fa19761c277f6907f5ef5ccd41e506a
https://github.com/mailru/tarantool/commit/6db32bdd8fa19761c277f6907f5ef5ccd41e506a
Author: Konstantin Osipov <[email protected]>
Date: 2012-10-04 (Thu, 04 Oct 2012)
Changed paths:
M src/tarantool_lua.m
M test/box/lua.result
Log Message:
-----------
Fix a test case I broke while cleaning up CDATA support.
Commit: 682d2c42553d9a42250c846bd3bddf97008c075e
https://github.com/mailru/tarantool/commit/682d2c42553d9a42250c846bd3bddf97008c075e
Author: Konstantin Osipov <[email protected]>
Date: 2012-10-04 (Thu, 04 Oct 2012)
Changed paths:
M src/tarantool_lua.m
M src/util.m
M test/box/admin.result
M test/box/admin_coredump.result
M test/box/configuration.result
M test/box/errinj.result
M test/box/fiber.result
M test/box/info.result
M test/box/lua.result
M test/box/lua_box_uuid.result
M test/box/reconfigure.result
M test/box/slab.result
M test/box/snapshot.result
M test/box/sql.result
M test/box/stat.result
M test/box/stat_lua.result
M test/box/xlog.result
M test/box_big/hash.result
M test/box_big/lua.result
M test/box_big/sql.result
M test/box_big/tree_pk.result
M test/box_big/tree_pk_multipart.result
M test/box_big/tree_variants.result
M test/box_memcached/lua.result
M test/box_memcached/multiversioning.result
M test/box_memcached/off.result
M test/box_replication/consistent.result
M test/box_replication/swap.result
M test/box_wal/lua.result
M test/box_wal/oom.result
M test/box_wal/wal_mode.result
M test/lib/admin_connection.py
Log Message:
-----------
Prepare for removal of crlf in output: make test output crlf independent.
Commit: 8e464b42c26c4e79d9c61d1669811efc1fe834b6
https://github.com/mailru/tarantool/commit/8e464b42c26c4e79d9c61d1669811efc1fe834b6
Author: Konstantin Osipov <[email protected]>
Date: 2012-10-05 (Fri, 05 Oct 2012)
Changed paths:
M AUTHORS
Log Message:
-----------
Update AUTHORS
Commit: a48b9108362e34513a911ef7594d641944a06118
https://github.com/mailru/tarantool/commit/a48b9108362e34513a911ef7594d641944a06118
Author: Konstantin Osipov <[email protected]>
Date: 2012-10-05 (Fri, 05 Oct 2012)
Changed paths:
M include/recovery.h
M mod/box/box.m
M src/recovery.m
M src/replica.m
M src/replication.m
Log Message:
-----------
Refactoring: make sure row applier is called with context.
When we recover either from a remote source or
from local log file/snapshot, a module "apply row" function
is invoked. Up until now this function
was invoked with a single argument - the row to apply,
and there were no context which would be passed around.
This worked fine as long as fibers were "all inclusive" --
i.e. contained all possible context which a function may need.
Now, when networking API and IO handles are split from
struct fiber, they need to be passed around explicitly,
in particular, into row apply function.
Prepeare the code base for this.
Commit: fcb34167bcfd4fe4571839002c66d91f885f4113
https://github.com/mailru/tarantool/commit/fcb34167bcfd4fe4571839002c66d91f885f4113
Author: Konstantin Osipov <[email protected]>
Date: 2012-10-05 (Fri, 05 Oct 2012)
Changed paths:
A include/evio.h
A include/sio.h
M src/CMakeLists.txt
A src/evio.m
M src/exception.m
M src/replication.m
A src/sio.m
M src/tarantool.m
Log Message:
-----------
Extract netwrok I/O from fiber I/O and make it exception-safe. Step 1.
Introduce two levels of new API: sio.h (the basic
socket IO) and evio.h (libev integrated socket IO).
Start changing the code base to use the new API.
Begin with replication.m.
Commit: f1604658603ce5c7caa71d7a96246f480456f131
https://github.com/mailru/tarantool/commit/f1604658603ce5c7caa71d7a96246f480456f131
Author: Dmitry E. Oboukhov <[email protected]>
Date: 2012-10-07 (Sun, 07 Oct 2012)
Changed paths:
M AUTHORS
M doc/user/stored-procedures.xml
A include/evio.h
M include/recovery.h
A include/sio.h
M mod/box/box.m
M src/CMakeLists.txt
A src/evio.m
M src/exception.m
M src/recovery.m
M src/replica.m
M src/replication.m
A src/sio.m
M src/tarantool.m
M src/tarantool_lua.m
M src/util.m
M test/box/admin.result
M test/box/admin_coredump.result
M test/box/configuration.result
M test/box/errinj.result
M test/box/fiber.result
M test/box/info.result
M test/box/lua.result
M test/box/lua.test
M test/box/lua_box_uuid.result
M test/box/reconfigure.result
M test/box/slab.result
M test/box/snapshot.result
M test/box/sql.result
M test/box/stat.result
M test/box/stat_lua.result
M test/box/xlog.result
M test/box_big/hash.result
M test/box_big/lua.result
M test/box_big/sql.result
M test/box_big/tree_pk.result
M test/box_big/tree_pk_multipart.result
M test/box_big/tree_variants.result
M test/box_memcached/lua.result
M test/box_memcached/multiversioning.result
M test/box_memcached/off.result
M test/box_replication/consistent.result
M test/box_replication/swap.result
M test/box_wal/lua.result
M test/box_wal/oom.result
M test/box_wal/wal_mode.result
M test/lib/admin_connection.py
Log Message:
-----------
Merge remote-tracking branch 'origin/master' into fiber-ipc
Commit: e5fb320be00c3040f219f03dc691cff5802c23c8
https://github.com/mailru/tarantool/commit/e5fb320be00c3040f219f03dc691cff5802c23c8
Author: Dmitry E. Oboukhov <[email protected]>
Date: 2012-10-08 (Mon, 08 Oct 2012)
Changed paths:
M include/fiber.h
R include/fiber_ifc.h
A include/ifc.h
M src/CMakeLists.txt
M src/fiber.m
R src/fiber_ifc.m
R src/fiber_ifc_lua.h
R src/fiber_ifc_lua.m
A src/ifc.m
A src/ifc_lua.h
A src/ifc_lua.m
M src/tarantool_lua.m
M test/box/ifc.result
M test/box/ifc.test
Log Message:
-----------
add timeout variants for all ifc methods
Compare: https://github.com/mailru/tarantool/compare/952d3b0cbd5a...e5fb320be00c
_______________________________________________
Mailing list: https://launchpad.net/~tarantool-developers
Post to : [email protected]
Unsubscribe : https://launchpad.net/~tarantool-developers
More help : https://help.launchpad.net/ListHelp