想知道哪個更適合性能。該網站將被登錄的用戶和沒有登錄的用戶查看。除了擁有更多權限之外,登錄用戶的網站幾乎相同。所以我想知道什麼會更有效率。PHP性能問題
// OPTION ONE
if(isLoggedIn()){
Write the whole web site plus the content the logged in user can access
}
else {
Write the whole website again, minus the content the logged in users can access.
}
//OPTION TWO
Write the website content and inset the login function wherever i need to restrict the access, so the function would be called a few different times.
我想知道它是否將是一個使用選項之一,因爲該功能將首先檢查一次更好的性能,並且不會需要重新檢查,如果用戶如果用戶沒有登錄,它會忽略第一個塊並加載第二個塊。
總之,什麼更容易維護?開發人員比服務器更昂貴(無論如何都是在低流量級別),所以請使用易於維護的版本(這恰好是#2)... – ircmaxell 2010-12-20 19:33:24
另一個蹩腳的問題。事實上,這個問題與性能調整無關,你無法調整任何這種蹩腳的方式。學習分析 – 2010-12-20 20:01:05