Handling processes concurrently
When you develop server applications, you need to consider whether your applications will need to process concurrent requests. If more than one client will be running your code at the same time, then your code will need to handle concurrent requests.
When you write or adapt code that can handle concurrent requests, you will need to consider whether to use transaction private variables (for which there exists a copy for each client) or global variables (which are shared among all clients).
Last modified date: 07/08/2019