XLCubed is now FluenceXL. The new wiki can be found here: https://help.fluencexl.com/

Data Configuration Settings

Revision as of 10:13, 26 July 2013 by Colin Overton (talk)

XLCubed's data access behaviour can be configured using xml files. It is not recommended to change these without advice from XLCubed support.

These files are found in the following places:

File Locations

  • Excel Edition - Install folder e.g. C:\Program Files (x86)\XLCubed Ltd\XLCubed
  • Web Edition - Install folder\bin e.g c:\Inetpub\wwwroot\XLCubedWeb\bin

Config Files

XLCubed.Data.xml

This file controls XLCubed's cache behaviour. XLCubed will cache metadata to improve performance, but will not cache data (query results).

Here you can control when the cache is cleared, and which metadata to cache.

The cache settings can be configured per cube and schema. If a specific setting is found that will override a general one. (e.g. a specific schema setting will override that for * schemas).

Caches can have the policy type and size set.

Policy types are:

  • PublicChecked - Shared between users, but on the first request the cube will be queried to check the user has permission to read the object.
  • PublicUnchecked - Shared between users, on the first ever request the cube will be queried to get the metadata which is then shared between subsequent users.
  • Private - Cache is per user, cube is queried for metadata the first time each user requests it.
  • PrivateBySession - Cache is per user session, the cube will be queried for different connections from the same user.

Cache policy sizes can be:

  • 0 - Do not cache
  • -1 - Cache all objects
  • N - any positive number, maximum cache size before objects are removed.