store.raw-bytes.class

Fully qualified classname of a raw bytes Store class to use.

Key: store.raw-bytes.class
Type: String
Can be set in: collection.cfg

Table of Contents

Description

This parameter gives the fully qualified name of a class to use for storage of raw bytes. The following are the classes available:

  • com.funnelback.common.io.store.bytes.FlatFileStore: Store content in directories and flat files.

  • com.funnelback.common.io.store.bytes.InMemoryStore: Store content in memory (not persistent)

  • com.funnelback.common.io.store.bytes.Push2Store: Store content in a push data source

  • com.funnelback.common.io.store.bytes.WarcFileStore: Store content in a WARC file (single compressed file)

Default Value

store.raw-bytes.class=com.funnelback.common.io.store.bytes.WarcFileStore

This specifies the use of a WARC file store.

See Also