1. 19 Sep, 2019 1 commit
  2. 13 May, 2019 5 commits
  3. 01 Mar, 2019 1 commit
  4. 21 Feb, 2019 1 commit
  5. 16 Jan, 2019 1 commit
  6. 09 Nov, 2018 2 commits
    • Lucas Molas's avatar
      Merge pull request #39 from schomatis/feat/walker · a6db2641
      Lucas Molas authored
      Add a DAG walker with support for IPLD `Node`s
      a6db2641
    • Lucas Molas's avatar
      feat: DAG Walker · 588c915d
      Lucas Molas authored
      Add a `Walker` structure with a simple interface to iterate and search inside DAGs, where a DAG need not be DAG of IPLD nodes but any graph of nodes meeting the `NavigableNode` interface.
      
      Add a `NavigableIPLDNode` structure (encapsulating the IPLD `Node` interface) that implements the `NavigableNode` interface that allows to traverse a DAG of IPLD `Node`s with support for node promises.
      
      License: MIT
      Signed-off-by: default avatarLucas Molas <schomatis@gmail.com>
      588c915d
  7. 02 Nov, 2018 1 commit
  8. 27 Oct, 2018 3 commits
  9. 26 Oct, 2018 3 commits
  10. 02 Oct, 2018 3 commits
  11. 11 Sep, 2018 2 commits
  12. 06 Sep, 2018 3 commits
  13. 05 Sep, 2018 2 commits
  14. 22 Aug, 2018 1 commit
  15. 15 Aug, 2018 1 commit
  16. 11 Aug, 2018 1 commit
  17. 12 Jul, 2018 1 commit
  18. 09 Jun, 2018 1 commit
  19. 15 Feb, 2018 1 commit
  20. 25 Jan, 2018 1 commit
  21. 20 Jan, 2018 1 commit
  22. 11 Dec, 2017 1 commit
  23. 05 Dec, 2017 1 commit
  24. 16 Nov, 2017 2 commits
    • Steven Allen's avatar
      add context to batch · 6cf32cc8
      Steven Allen authored
      I considered (well, implemented then threw it away) allowing contexts on all
      calls to Batch (Add, Commit, etc). However, really, you should treat a batch
      as a single large "operation".
      
      I also went down the road of generalizing batches to sessions. However, it
      became immediately obvious that permitting add *and* remove *and* fetch would
      require a lot of bookkeeping and that you'd lose a lot of performance. So, we'll
      do that separately.
      6cf32cc8
    • Steven Allen's avatar
      add contexts to Add/Remove methods · 44a78014
      Steven Allen authored
      We'll need these for slower/remote datastores.
      44a78014