Documentation Cacheable Tables

From OpenPetra Wiki
Revision as of 11:32, 27 March 2013 by Pokorra (talk | contribs) (now called TCacheableTablesManager.GCacheableTablesManager)
Jump to navigation Jump to search

Overview: Cacheable DataTables

See Data Caching in the architectural overview of openPETRA.

Generate Cacheable DataTables

Cacheable DataTables are generated with:

nant generateORMCachedTables

Defining cached tables and lists

The file csharp/ICT/Petra/Definitions/CacheableTablesAndLists.yaml contains DB tables and lists which should be cached.

All cached tables are defined in this one file. The first level is the module, the next deeper level is the submodule. After that, there is a different section for either tables that are straight from the database (DatabaseTables, eg. PMethodOfContact), and lists that are calculated with SQL or have added columns (CalculatedLists, eg. CountryListFromExistingLocations).

You can define the following attributes:

  • Comment: if you don't want the default description from petra.xml to be used in the enum comment in Shared, you can define your own comment here. You definitely should add a comment for all calculated lists since there is no default comment for them.
  • Enum: if the enum name should not be calculated from the table name (PMethodOfContact would become MethodOfContactList), you can specify an explicit enum name. eg. CurrencyCodeList for ACurrency
  • DependsOnLedger: This is used for most finance tables because you only want to cache values of a specific ledger. This attribute can be defined on an element higher up in the yaml hierarchy and is inherited for all lower lines.

Files affected by the generation of Cacheable DataTables

  • in Petra/Shared, for each module there is a Petra/Shared/lib/M<Module>/Cacheable.cs file autogenerated
  • in Petra/Server, for each submodule there is a file autogenerated in Petra/Server/lib/M<Module>/<Submodule>.Cacheable.cs. If there is only one submodule, then the submodule name might be ommitted from the filename.

ManualCode adjustments

For lists, you need to define how to calculated and fill the lists. Please find the Get...Table() functions at the bottom of the Server Cacheable file. Don't forget to define a primary key for calculated lists as otherwise it can happen that the client has problems with merging data from the server and therefore the list might grow each time it is referenced.

You also need to add using clauses to the top of the Server Cacheable files, inside a ManualCode section.

Updating/Invalidating a Cacheable DataTable

When data gets changed, then the cached table needs to be marked as invalid.

Procedure if this needs to be invoked on the server-side of OpenPetra:

reference 'Ict.Petra.Shared.dll' (for TCacheableTablesManager Class)

TCacheableTablesManager.GCacheableTablesManager.MarkCachedTableNeedsRefreshing(
    TCacheableFinanceTablesEnum.AccountList.ToString());

Procedure if this needs to be invoked on the client-side of OpenPetra:

reference 'Ict.Petra.Client.App.Core.dll' (for TDataCache Class)

using Ict.Petra.Client.App.Core;

TDataCache.ReloadCacheTable(TCacheableCommonTablesEnum.CountryList);  // for non Ledger-specific cacheable Tables
  -- or --
TDataCache.ReloadCacheTable(TCacheableFinanceTablesEnum.MotivationList, 43);  // for Ledger-specific cacheable Tables