1// Copyright 2017 Keybase Inc. All rights reserved.
2// Use of this source code is governed by a BSD
3// license that can be found in the LICENSE file.
4
5// +build 386
6
7package libkbfs
8
9// DefaultBlocksInMemCache is the number of blocks we should keep in
10// the cache.  We turn this way down for 32-bit builds to avoid
11// overflowing the low memory limits.
12const DefaultBlocksInMemCache = 128
13