I am writing an application in C++ that needs to read-only from the same memory many times from many threads. My question is from a performance point of view will it be better to copy the memory for each thread or give all threads the same pointer and have all of them access the same memory.
谢谢 谢谢