spelling fixes

This commit is contained in:
EParzefall
2023-04-24 13:55:10 +02:00
parent 6d7b13c7a5
commit e2686f90b9
9 changed files with 27 additions and 27 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ The ocs endpoint, by default `/ocs`, implements the ownCloud 10 Open Collaborati
Aggregating share information is one of the most time consuming operations in OCIS. The service fetches a list of either received or created shares and has to stat every resource individually. While stats are fast, the default behavior scales linearly with the number of shares.
To save network trips the sharing implementation can cache the stat requests with an in memory cache or in redis. It will shorten the response time by the network round-trip overhead at the cost of the API only eventually being updated.
To save network trips the sharing implementation can cache the stat requests with an in memory cache or in Redis. It will shorten the response time by the network round-trip overhead at the cost of the API only eventually being updated.
Setting `FRONTEND_OCS_RESOURCE_INFO_CACHE_TTL=60` would cache the stat info for 60 seconds. Increasing this value makes sense for large deployments with thousands of active users that keep the cache up to date. Low frequency usage scenarios should not expect a noticeable improvement.