-
[GET] /api/specialities |
Beta Was this translation helpful? Give feedback.
Replies: 0 comments 5 replies
-
Since sqlite stores data locally, we recommend using a different database that can share state between instances of your functions. You can't reliably write to sqlite because storage is ephemeral in Serverless Functions. As your function receives more concurrent traffic, we will create new instances of your function that don't share the same storage. |
Beta Was this translation helpful? Give feedback.
Since sqlite stores data locally, we recommend using a different database that can share state between instances of your functions.
You can't reliably write to sqlite because storage is ephemeral in Serverless Functions. As your function receives more concurrent traffic, we will create new instances of your function that don't share the same storage.