I am learning Dots and want to implement a very performant way for a System to use static config data.
For each Entity parallelized jobs should access the static config data.
Can the config data permanently stay on the cache?
Simply put your config data in a singleton component, then pass the singleton to your jobs. I guess you could also use shared statics, but I’m not sure if that’s a good practice.
It will probably move around between L1, L2 and L3 cache as needed. I wouldn’t worry about it until it becomes a problem.