13.5.3. LevelDB Cache Store Sample XML Configuration (Library Mode)


The following is a sample XML configuration of LevelDB Cache Store.

Procedure 13.7. LevelDB Cache Store Sample XML Configuration

  1. Add the namedCache Element

    Specify the LevelDB Cache Store's name using the name parameter in the namedCache element as follows:
    <namedCache name="vehicleCache">
    
    Copy to Clipboard Toggle word wrap
  2. Add the persistence Element

    Specify the value for passivation parameter in the persistence element as follows. Possible values are true and false.
    <namedCache name="vehicleCache">
        <persistence passivation="false">
    
    Copy to Clipboard Toggle word wrap
  3. Add the leveldbStore Element

    Specify the location to store the primary cache store date using the location parameter in the leveldbStore element as follows. The directory is automatically created if it does not exist. The following is an example of this step:
    <namedCache name="vehicleCache">
          <persistence passivation="false">
              <leveldbStore location="/path/to/leveldb/data" />
    
    Copy to Clipboard Toggle word wrap
  4. Set the Expired Value

    Specify the location for expired data using the expiredLocation parameter as follows. The directory stores expired data before it is purged. The directory is automatically created if it does not exist.
    <namedCache name="vehicleCache">
          <persistence passivation="false">
              <leveldbStore location="/path/to/leveldb/data"  
                         expiredLocation="/path/to/expired/data" />
    
    Copy to Clipboard Toggle word wrap
  5. Set the Shared Parameter

    Specify the value for shared parameter in the leveldbStore element as follows. Possible values are true and false.
    <namedCache name="vehicleCache">
          <persistence passivation="false">
              <leveldbStore location="/path/to/leveldb/data"  
                         expiredLocation="/path/to/expired/data" shared="true" />
    
    Copy to Clipboard Toggle word wrap
  6. Set the Preload Parameter

    Specify the value for preload parameter in the leveldbStore element as follows. Possible values are true and false.
    <namedCache name="vehicleCache">
          <persistence passivation="false">
              <leveldbStore location="/path/to/leveldb/data"  
                         expiredLocation="/path/to/expired/data" shared="true" preload="true"/>
          </persistence>
       </namedCache>
    
    Copy to Clipboard Toggle word wrap
Red Hat logoGithubredditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat Documentation

We help Red Hat users innovate and achieve their goals with our products and services with content they can trust. Explore our recent updates.

Making open source more inclusive

Red Hat is committed to replacing problematic language in our code, documentation, and web properties. For more details, see the Red Hat Blog.

About Red Hat

We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

Theme

© 2026 Red Hat
Back to top