I want to set up a runtime test system. Do I have to copy the object_cache of each application, too?

LYCIA


If you are using different Lycia version and/or different OS, it's better to build object_cache on the deployment server.
To build object_cache for all programs in a folder, run the following script from Lycia Command Line:

set QX_VERBOSE_CACHE=1
rem QX_REL_LINE_INFO=1 add in inet.env to enable line info 
set QX_REL_LINE_INFO=1
rem Replace to your project directory
cd "C:\ProgramData\Querix\Lycia\progs\bab"
dir /b *.exe  > list.txt
@for /f "delims=" %%A in (list.txt) do qrun --aot %%A 
del list.txt

Though, if Lycia version and the OS (version & arch) are the same, you can copy object_cache from development to deployment server.