Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: fsspec/s3fs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: fsspec/s3fs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: threads
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 6 commits
  • 3 files changed
  • 2 contributors

Commits on Apr 27, 2016

  1. Invalidate rather than update cache

    Previously on touch or write events we called `_ls` to update the local
    cache.  When we called touch repeatedly this caused a slowdown unless
    we used the `no_refresh` context manager.
    
    Now we just invalidate the cache on write events so that the next read
    event will correctly update the cache.  This helps with many successive
    writes.
    mrocklin committed Apr 27, 2016
    Configuration menu
    Copy the full SHA
    741bb9a View commit details
    Browse the repository at this point in the history
  2. squash

    mrocklin committed Apr 27, 2016
    Configuration menu
    Copy the full SHA
    b08cc11 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2016

  1. Invalidating cache to supercede no_refresh

    a better way to solve the many-writes problem; no need to check the
    filelist until the next time we need the listing/detail.
    Martin Durant committed Apr 28, 2016
    Configuration menu
    Copy the full SHA
    ba92107 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2016

  1. Simple write for small files

    Martin Durant committed Apr 29, 2016
    Configuration menu
    Copy the full SHA
    743e937 View commit details
    Browse the repository at this point in the history
  2. Fixes

    Martin Durant committed Apr 29, 2016
    Configuration menu
    Copy the full SHA
    be44e55 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2016

  1. Trial with threads

    For s3 client operations that don't return anything, forget about
    response.
    
    Note, many tests break, because there is no sync mechanism
    Martin Durant committed May 2, 2016
    Configuration menu
    Copy the full SHA
    7cc4d6a View commit details
    Browse the repository at this point in the history
Loading