Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo fix README.md #4034

Open
wants to merge 1 commit into
base: stage
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/server/src/queries/complex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.