diff --git a/packages/server/src/queries/complex/README.md b/packages/server/src/queries/complex/README.md index e5ba13226a..8c149a1baf 100644 --- a/packages/server/src/queries/complex/README.md +++ b/packages/server/src/queries/complex/README.md @@ -57,4 +57,4 @@ Recommendations: - The name of the function should correspond roughly to the type of data it returns, rather then the feature that is using it. - Prefer returning all the data returned by underlying queries, instead of specific values needed by your feature. This allows the function and its returned data to more readibly be reused in other features. - If it includes many params, especially optional params, it should accept an object as a parameter. Otherwise, one or two function parameters are fine. -- If values will not exceed 1MB and are especially expensive to query or calculate, the `RemoteCache` can be used. This will be shared amongst all server runtimes. Due to networking overhead, it is recommeneded to use `LRUCache` for smaller or more critical values, or values that exceed 1MB. See [Vercel limitations](https://vercel.com/docs/functions/limitations) for more information. +- If values will not exceed 1MB and are especially expensive to query or calculate, the `RemoteCache` can be used. This will be shared amongst all server runtimes. Due to networking overhead, it is recommended to use `LRUCache` for smaller or more critical values, or values that exceed 1MB. See [Vercel limitations](https://vercel.com/docs/functions/limitations) for more information.