1
0
mirror of https://github.com/Zygo/bees.git synced 2025-07-06 02:22:27 +02:00

bees: don't limit number of active crawlers

All testing so far incidates more crawlers go faster up to a limit
much larger than btrfs's performance limitations on subvols, even on
spinning rust.  Remove the artificial constraint.

Signed-off-by: Zygo Blaxell <bees@furryterror.org>
This commit is contained in:
Zygo Blaxell
2017-03-26 10:23:09 -04:00
parent d43199e3d6
commit c1dbd30d82
2 changed files with 3 additions and 3 deletions

View File

@ -260,7 +260,7 @@ BeesContext::home_fd()
BeesContext::BeesContext(shared_ptr<BeesContext> parent) :
m_parent_ctx(parent)
{
m_extent_lock_set.max_size(bees_worker_thread_count());;
// m_extent_lock_set.max_size(bees_worker_thread_count());;
if (m_parent_ctx) {
m_fd_cache = m_parent_ctx->fd_cache();
}