Reputation: 275
I've got a few files which cause PHP notices to show if I have them enabled. Everything works as it should, just the notices appear. I know they should be corrected (undefined index and undefined variable) but at the moment I need to get this done. Some pages have over 100, some are as few as 10.
Are there any adverse performance effects to putting this code live, i.e. additional server load?
Upvotes: 0
Views: 1272
Reputation: 68526
Yes it does affect performance.
You need to fix those issues. As you have clearly mentioned that you have more than 100 notifics. It does cause an overload.
After fixing those, regarding improving the performance, you should also have a look at Alternative PHP Cache which will be useful for you.
There is also a good presentation on APC here on SlideShare.
Upvotes: 2