From 0be1feec216cfdbc1c8feab95c88dad2eefab3df Mon Sep 17 00:00:00 2001 From: Eli Pozniansky Date: Fri, 19 Jul 2019 14:55:07 -0700 Subject: [PATCH] Added .watchmanconfig file to rocksdb repo (#5593) Summary: Added .watchmanconfig file to rocksdb repo. It is currently .gitignored. This allows to auto sync modified files with watchman when editing them remotely. Pull Request resolved: https://github.com/facebook/rocksdb/pull/5593 Differential Revision: D16363860 Pulled By: elipoz fbshipit-source-id: 5ae221e21c6c757ceb08877771550d508f773d55 --- .gitignore | 1 + .watchmanconfig | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 .watchmanconfig diff --git a/.gitignore b/.gitignore index 180fb4c50..7a799c09a 100644 --- a/.gitignore +++ b/.gitignore @@ -24,6 +24,7 @@ make_config.mk *.vcxproj.filters *.sln *.cmake +.watchmanconfig CMakeCache.txt CMakeFiles/ build/ diff --git a/.watchmanconfig b/.watchmanconfig new file mode 100644 index 000000000..e5b450d7b --- /dev/null +++ b/.watchmanconfig @@ -0,0 +1,6 @@ +{ + "content_hash_warming": true, + "content_hash_max_items": 333333, + "hint_num_files_per_dir": 8, + "fsevents_latency": 0.05 +}