Relatively new to developing for Sharepoint, but building a website with a lot of functionality. The frontpage alone is making 5 queries to separate lists and has numerous javascript libraries associated with it. Currently, I am using the js SPServices library to query each set of data whereas webparts are mostly delegated to tasks such as event-listeners and the like.
This got me thinking, am I doing too much client side? Should I move all my SPServices calls to serverside processing? How do you determine which approach is best?
Thanks.