https://twill.io logo
PHP configuration recommendations
# ❓questions
m
Any advice on a baseline ram and execution time limit I should set for an ecommerce store?
i
this depends on your traffic and the capacity of the server you're hosting your project on
30s is usually the default execution time limit (that's what Laravel forge defaults fwiw)
regarding ram, it really also depends on how efficient your code is
256/512 is usually good for most use cases, PHP isn't really hungry for memory, traffic will eat your CPU more than anything
m
Sounds great, makes sense. Default for ram seemed to be 128mb I think from what I saw.
But I guess I’ll have to play, plus optimizing code will play into it likely