Skip to content

Commit

Permalink
make dir caching the default for v1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Russ Ross committed Jun 24, 2010
1 parent d9d9176 commit 5827c8e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,11 +233,11 @@ The complete list of supported options is:
it checks each time a readdir operation is invoked to see if
every file the server names has a metadata cache entry. Future
readdir operations are also satisfied by the cache. (default
`false`).
`true`).

* `dir_cache_reset=` force the list of completely cached
directories (see `dir_cache=` above) to be reset at file system
mount time (default `true').
mount time (default `true`).

* `writeback_cache=` specify the directory where the write-back
cache temporary files should be created (default `/tmp`). Files
Expand Down
2 changes: 1 addition & 1 deletion common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ std::string AWSSecretAccessKey;
std::string host("http://%s.s3.amazonaws.com");
mode_t root_mode = 0755;
std::string attr_cache;
std::string dir_cache("false");
std::string dir_cache("true");
std::string dir_cache_reset("true");
std::string writeback_cache("/tmp");
int retries = 2;
Expand Down

0 comments on commit 5827c8e

Please sign in to comment.