Skip to content
Snippets Groups Projects
  1. Sep 20, 2019
  2. Sep 19, 2019
  3. Jun 03, 2019
  4. Jul 28, 2018
  5. May 23, 2018
  6. Sep 21, 2017
  7. Aug 05, 2017
  8. Jan 31, 2017
  9. Nov 18, 2016
  10. Sep 27, 2016
  11. Aug 31, 2016
  12. Jun 21, 2016
  13. May 04, 2016
  14. Apr 01, 2016
  15. Mar 08, 2016
  16. Feb 16, 2016
  17. Jan 27, 2016
  18. Jan 01, 2016
  19. Dec 20, 2015
  20. Nov 03, 2015
    • Connor McCoy's avatar
      [version] update master to 0.6.0-SNAPSHOT. · b116ee5a
      Connor McCoy authored
      b116ee5a
    • Connor McCoy's avatar
      StatusCode -> Status · 5113c2e3
      Connor McCoy authored
      Replaces numeric status codes with a canonical set of Status objects,
      each with a short name and description.
      Bindings with more specific errors (e.g., timeouts) return additional
      statuses.
      
      This changes the default output from messages like:
      
         [UPDATE], Return=0, 511
      
      To:
      
         [UPDATE], Return=OK, 511
      5113c2e3
  21. Oct 14, 2015
  22. Sep 21, 2015
  23. Aug 07, 2015
  24. Jul 17, 2015
  25. Jun 25, 2015
  26. Jun 18, 2015
  27. Jun 17, 2015
    • Sean Busbey's avatar
      [packaging] refactor packaging to avoid fat-jars. · 195d6e86
      Sean Busbey authored
      * remove unused declared deps in a few places
      * lex sort modules in top level pom
      * update maven plugin versions.
      * no more jar-with-dependencies
      * set ycsb-core to provided in bindings
      * introduce a bindings-parent pom that sets
      ** stage dependency copy on building binding
      ** iff binding has a README.md, build a binding-specific dist artifact
      * update distribution assembly to
      ** properly build after modules
      ** use per-binding sets of dependencies
      
      closes #250
      195d6e86
  28. Jun 15, 2015
    • bigbes's avatar
      Move configuration files · 622974fe
      bigbes authored
      Move configuration files to position, so they'll be included into
      binary artifact.
      622974fe
  29. Jun 12, 2015
  30. Jun 11, 2015
    • bigbes's avatar
      Add Tarantool database · bf4c4e57
      bigbes authored
      http://tarantool.org and https://github.com/tarantool/tarantool
      In "mail.ru" we wrote and widely use Tarantool key-value database.
      It's key properties include:
      
      * Defferent index types with iterators:
          - HASH (the fastest)
          - TREE (range and ordered retreival)
          - BITSET (bit mask search)
          - RTREE (geo search)
      * multipart keys for HASH and TREE indexes
      * Data persistence with by Write Ahead Log (WAL) and snapshots.
      * asynchronous master-master replication, hot standby.
      * coroutines and async. IO are used to implement high-performance lock-free access to data.
          - socket-io/file-io with yeilds from lua
      * stored procedures in Lua (Using LuaJIT)
      * supports plugins written on C/C++ (Have two basic plugins for working with MySQL and PostgreSQL)
      * Authentication and access control
      
      Move 'distribution target' to the end (it's needed for .jar to be in the .tar.gz)
      bf4c4e57
Loading