Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For all stores, the normal behavior is to allow creation only if there exists no store with the desired name. But with the parameter "createOnlyIfNotExists", one can change that behavior. If set to false, a store with the same name is not droped and the existing store will be reused (Warning, in this case the type of the store cannot be changed! So be careful with this option!):

Code Block
#CREATE_KV_STORE test MemoryStore(createOnlyIfNotExists=false) /// default is true

...