Come together with the global Drupal community in Rotterdam, 28 Sept – 1 Oct 2026. Sessions, contribution, connection, and Early Bird savings until 8 June.
Mike, the only entries that Bitcache writes to the {files} table are for temporary files. (This happens in the bitcache_tmpname() function in bitcache.module.)
Those files will (at least in principle) get removed by Drupal on cron runs.
Files permanently stored in Bitcache repositories don't have entries in the {files} table.
So, the short answer is, don't worry about it - the file size information isn't needed for temporary files.
Comments
Comment #1
Arto commentedMike, the only entries that Bitcache writes to the
{files}table are for temporary files. (This happens in thebitcache_tmpname()function inbitcache.module.)Those files will (at least in principle) get removed by Drupal on cron runs.
Files permanently stored in Bitcache repositories don't have entries in the
{files}table.So, the short answer is, don't worry about it - the file size information isn't needed for temporary files.