Skip to content
Snippets Groups Projects
  1. Feb 03, 2014
    • Roman Tsisyk's avatar
      Optimize Lua/C bindings for box · 052c147b
      Roman Tsisyk authored
      This patch add specialized versions of box.process for select, insert,
      replace, update and delete requests. This optimization reduces the
      number of Lua <-> C switches during request processing. New functions
      create struct request directly without allocating temporary buffer for
      entire request body.
      052c147b
  2. Jan 31, 2014
  3. Jan 30, 2014
  4. Jan 29, 2014
  5. Jan 28, 2014
  6. Jan 27, 2014
  7. Jan 26, 2014
  8. Jan 25, 2014
  9. Jan 24, 2014
  10. Jan 23, 2014
    • Konstantin Osipov's avatar
      Remove ellipsis in box Lua API · b1a6f0dd
      Konstantin Osipov authored
      Change:
          box.space.name:insert() to box.space.name:insert{}
          box.space.name:replace() to box.space.name:replace{}
          box.space.name:delete() to box.space.name:delete{}
          box.space.name:auto_increment() to box.space.name:auto_increment{}
          box.space.name:select() to box.space.name:select{}
          box.space.name:update() now requires an explicit key and ops
          table.
      
      Remove ellipsis from wrappers which don't strictly need it.
      Remove backward-compatible next_equal/next/prev_equal/next/prev
      iteration functions.
      Cleanup hot_standby.test
      b1a6f0dd
    • Konstantin Osipov's avatar
      Support change of index parts in index:alter{}. · 8adc7c89
      Konstantin Osipov authored
      Implement a complete index:alter{} binding in Lua.
      Use alter consistently in the test suite
      8adc7c89
  11. Jan 22, 2014
Loading