Posts

Showing posts from April, 2015
I will talk about:- Architecture to choose for bigger audience. Too many machines - remove dependency from user machine (the unknowns) and shift it towards known machines (servers). Make the client as lean as possible. Get server to do the  heavy lifting - that's what they are made for. The problem is that unless you have an army of application support people, you would never be able to sort out each and every problem. Machines tend to be different. Code misbehaves on certain machines and let's face it, you can never full-proof your code for every kind of machine. On the face of it, it is quite lucrative to push as much functionality to our "thick" or "smart" client as possible. This will de-centralise processes to user's machine. Result - less load on server. But in case of a production issue, is hard of get hold of user's machine. Moreover, efforts done to fix the problem might not be useful to majority of users. This result in m...