You can manage the contents of the cache with ostc_Session::flushObjects().
To create a Component Server plug-in, you must implement the following global functions:
In addition, you must derive a type from ostc_ServerOperation for each operation you want the Server to handle. Each derived type must implement the following member functions:
Your implementations of these functions (except ostcConnect() and ostcInitialize()) must be reentrant. That is, you are responsible for synchronizing access to any transient state that could be shared across Server threads. In addition, for operations that use shared_update transactions, you must synchronize access to persistent data if that is necessary to prevent interference among threads.
Component Server programs must include the header file <ostcsrvr.h>.