REQUEST_QUEUEING_ENABLED
Content copied to clipboard
An optimization that decouples the request from the request handling. This will make each request finish faster from the caller's perspective by queueing the requests to be handled asap, rather than handling them while the caller waits. This isn't that useful when using the default PROFILE_STORAGE_MODE=IN_MEMORY
since the request handling is pretty fast already. It was added to make PROFILE_STORAGE_MODE=SQLITE
faster since there is af air bit of IO for each request. You probably don't need to change this.
Defaults to false