This project is mirrored from https://gitee.com/mirrors/neo4jsource.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
  1. 19 Oct, 2014 2 commits
  2. 30 Sep, 2014 3 commits
  3. 04 Sep, 2014 2 commits
  4. 03 Sep, 2014 1 commit
  5. 13 Aug, 2014 1 commit
    • Chris Vest's avatar
      Less hacky way to disable generating ComponentVersion · 50d941e9
      Chris Vest authored
      The `io` and `primitive-collections` modules are earlier in the build than the
      `kernel`, and therefore cannot have ComponentVersions.
      
      The generation of the ComponentVersion class can be disabled by simply not
      having a `version-package` property in the pom file.
      Lots better than going out of our way to sabotage the ant-run plugin.
      50d941e9
  6. 28 Jul, 2014 3 commits
  7. 17 Jul, 2014 1 commit
    • Jacob Hansson's avatar
      Introduces MarshlandPool · 0e28fb2a
      Jacob Hansson authored
      - Marshland pool uses "puddles", local per-thread pools, to avoid pool
        contention. It delegates to a global pool when the local pool is not
        sufficient.
      - Renames FlyweightPool -> LinkedQueuePool
      - Consolidates pools under the Pool<> interface
      - Remaining work: Have marshland pool store more than one local object per
        thread, using for instance a linked list.
      0e28fb2a
  8. 12 Jun, 2014 1 commit
  9. 11 Jun, 2014 3 commits
  10. 29 May, 2014 5 commits
  11. 28 May, 2014 3 commits
  12. 23 May, 2014 2 commits
  13. 21 May, 2014 1 commit
  14. 16 May, 2014 2 commits
  15. 28 Apr, 2014 2 commits
  16. 10 Apr, 2014 1 commit
    • Mattias Persson's avatar
      Primitive hash collections and maps using hop-scotch hashing · 67ddb874
      Mattias Persson authored
      Hop-scotch hashing is an algorithm for dealing with conflicts coming from
      hashing values to an index and not really about the hashing itself, as any
      hash function can be used with it.
      
      Measured to be comparable to other leading libraries with equal
      functionality and with substantially less, also dry, code.
      The algorithm itself is pulled out into its own class and clocks in on
      about 200-300 LOC, whereas the hash set/map implementations calls that
      algorithm with one-liners. The state itself is abstracted into a Table interface
      which is trivial to implement with, for example a primitive long[], a
      combination of long[] and int[] for a long->int primitive map, a.s.o.
      
      Implementation was driven by an iterative randomizing testing framework
      also added in this commit where actions are defined, for example "add" and
      "remove" with checks that goes with the actions. In the event a check not
      returning OK the execution stops, reduces the list of actions down to a
      minimum (by brute-force-reduction one action at a time) and finally prints
      a java-code test case to reproduce the problem. Confidence in the code is
      high since it has been tested for a very large combination of values
      and sizes.
      
      These sets and maps should be preferable over java.util collections in
      cases where the key is int or long and access is single threaded.
      If need be a multi-threaded version of the algorithm can be added later.
      
      The new sets and maps and all interface it depends on from kernel has been
      moved into a primitive-collections module that kernel depends on. Since
      everything else depends on kernel this change will barely be noticable for
      any other component, apart from class import changes.
      67ddb874
  17. 04 Apr, 2014 1 commit
  18. 21 Feb, 2014 2 commits
  19. 04 Feb, 2014 2 commits
  20. 03 Feb, 2014 2 commits