index: store pointer to engine
Currently, index iterator allocation and initialization are separated. This is done in order to speed up iterator creation when the caller does not yield: there's 'position' method, which returns a preallocated iterator and can be used instead of costly 'alloc'; the iterator returned by this method needs to be initialized just like an iterator allocated normally, via 'alloc'. This looks ugly, because 'position' is engine-dependent, e.g. it can't be used in case of vinyl, because vinyl yields internally. We can get rid of the above-mentioned 'position' hack by simply using a mempool for allocating iterators. To do that, we need to access engine from index, so this patch adds a reference to struct engine to struct index.
Showing
- src/box/index.cc 3 additions, 2 deletionssrc/box/index.cc
- src/box/index.h 5 additions, 2 deletionssrc/box/index.h
- src/box/memtx_bitset.c 3 additions, 2 deletionssrc/box/memtx_bitset.c
- src/box/memtx_bitset.h 3 additions, 1 deletionsrc/box/memtx_bitset.h
- src/box/memtx_hash.c 3 additions, 2 deletionssrc/box/memtx_hash.c
- src/box/memtx_hash.h 2 additions, 1 deletionsrc/box/memtx_hash.h
- src/box/memtx_rtree.c 3 additions, 2 deletionssrc/box/memtx_rtree.c
- src/box/memtx_rtree.h 3 additions, 1 deletionsrc/box/memtx_rtree.h
- src/box/memtx_space.c 9 additions, 7 deletionssrc/box/memtx_space.c
- src/box/memtx_tree.c 3 additions, 2 deletionssrc/box/memtx_tree.c
- src/box/memtx_tree.h 3 additions, 1 deletionsrc/box/memtx_tree.h
- src/box/sysview_engine.c 3 additions, 1 deletionsrc/box/sysview_engine.c
- src/box/sysview_index.c 4 additions, 2 deletionssrc/box/sysview_index.c
- src/box/sysview_index.h 3 additions, 1 deletionsrc/box/sysview_index.h
- src/box/vinyl_index.c 19 additions, 12 deletionssrc/box/vinyl_index.c
- src/box/vinyl_index.h 2 additions, 3 deletionssrc/box/vinyl_index.h
- src/box/vinyl_space.c 2 additions, 2 deletionssrc/box/vinyl_space.c
Loading
Please register or sign in to comment