Difference between FBWC capacities?

Solution 1:

There is definitely a diminishing-returns thing going on with higher capacities. The read-cache will contain the hottest blocks being accessed, which in many cases is probably the blocks associated with your filesystem metadata. If your entire metadata can fit into the read cache, overall filesystem performance will be noticeably snappier. The size of metadata depends on the filesystem used, though; size appropriately there.

Once you've exceeded the metadata size, more cache has less immediate returns. It definitely improves performance, but the metrics are kind of complex and based on I/O rates.

One thing these controllers do is if set in write-back mode (data is committed once it is in the cache) is reorder writes so they go to disk in a more-sequential way, and thus increase perceived performance of the system. The more write you push per second, the more write-cache it can use.

Solution 2:

It depends on your write patterns. I typically bias my servers towards a 75:25 write:read ratio... But 512MB and 1GB have been good enough to buffer write activity for my applications. You'll be flushing to disk often enough that size may not matter for most apps. Having the extra cache may be useful for situations where you could benefit from allocating more to the read cache. But this all depends on your activity, especially considering OS and filesystem caching...

Solution 3:

More capacity means more cache - the more data can read server from cache instead of getting data from disks, this is improving performance. It's fast, effective and safe.

To know the metric - you have to know what storage blocks are often used when random read-write occurs (mostly, but it may depend on data bandwidth too). If you are accessing terabytes with constant gbps bandwidth - it may not have effects, even in case of random writes.

It's not only about the read, depending on your configuration it might be write cache too, but if write cache mode is not battery-protected - you'll lose non-written, active data.

HDD's also have a cache memory, which can be disabled too (ex. write-through mode).