File-Based Stores Settings

Classic Configuration

Stores are configured in the stores.conf file. The syntax for file-based stores is:

[store_name] # mandatory -- square brackets included
  type=file
  file=name
  file_destination_defrag=size
  [file_crc=true|false]
  [file_minimum=value]
  [file_truncate=value]
  [mode=async|sync]
  [processor_id=processor-id]
Note: Note that the square brackets [ ] DO NOT indicate that the store_name is an option; they must be included around the name.

For example:

[my_sync]
  type = file
  file = /var/local/tibems/my_sync.db
  file_destination_defrag=2MB
  file_crc = true
  file_minimum = 10MB
  file_truncate = true
  mode = sync

Administration

View Stores
show store store-name
Show the details of a specific store. This command can be used to get details about either a file-based store or a database store.
The store-name must be the exact name of a specific store.