What I mean by efficient is performance (loading pages … etc). I know that it depends on many aspects like the web host, but in terms of language or framework performance which one is the best?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Efficiency covers lots of different things:
Language and framework have very little to do with page weight and design.
The fewest number of ops, smallest amount of memory is always going to be done by the lowest level language, but that is in direct opposition to efficiency of development. Higher level languages involve abstractions which usually make code more maintainable, more easy to develop, but can conversely lead to more operations,larger memory usage. However, that is often a moot point since it’s often easier/cheaper to create a scalable app, rather than optimizing for memory/cpu.
The most efficient language/framework for development is almost always going to be the language/framework you know the best.