Is ASP.NET MVC a viable choice for a large project? [closed] - asp.net-mvc

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I want to use MVC for a big project, but I read in some website that this is not suitable for large projects.
Is this true? and are there examples of some great sites or application that have been written with this technology?

We built the site you are browsing with it.
StackOverflow is a 100k LoC ASP.NET MVC site, and is currently #66 #53 in the world for traffic according to Quantcast.
More in general, it matters much more how you use it.
Facebook is PHP based, twitter is Ruby based. Both are relatively slow interpreted languages, and yet, they work!

Related

What Linux-Hosted Web Language/Framework is most like asp.net mvc 5+ [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
I know this is the kind of question that usually gets deleted, but I have to find some answers. I want to build a project in a new technology more suitable to hosting on a Linux server, but I like the way things are done in ASP.NET MVC. I've looked at Rails a bit but I've heard that Rails performs and scales poorly. Any suggestions appreciated.
Ruby on Rails doesn't scale well, but depending on your needs you may never have to worry about it.
My guess is you'd be most comfortable with something like CakePHP or just PHP and whatever MVC framework. It's pretty C# like, and it's FAST!
Python/Django is also a good choice. (My personal favorite)

Choice of Ruby Web Framework To Use With Backbone.js [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I'm coding a medium sized web application and am planning on making it MV*/JS based using backbone.js. I have a choice of using either Sinatra or Rails for the REST API/session based authentication. Which would you choose, and why?
This question has little to do with Backbone.js, and a lot to do with the overall complexity of your application.
Rails provides many features that Sinatra does not:
MVC architecture
ORM framework
Relational Database Scaffolding
If you won't benefit from these features, Sinatra is a good choice because of its minimalist design (under 2,000 lines of code).

Authentication for Rails [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
For those of you familiar with M. Hartl's RoR Tutorial, do you know if the latest authentication system taught in the book is full proof for a large scale application or would you recommend going in with a ready made authentication systems like Devise or OAuth.
I find the system taught in the book very easy to follow as compared to the ready made systems. I am just not sure if there are any security loopholes in it.
Go with Devise.
Rolling out your own authentication system is great for practice, but many minds beats one, especially when it comes to security.

Lucene.Net in ASP .Net MVC application [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
Am currently looking to implement full text search in different pages of my asp .net MVC application and was thinking to use Lucene.Net to achieve this. I was hoping if someone could guide me through best practices how to achieve this in an asp .net MVC application with fluent nhibernate for multiple datatypes.
Thanks

Differnce between mvc and silverlight [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
which is future of web technology of microsoft
silverlight or mvc asp.net i am really confused
iam good in asp.net but completely unaware with silvelight and mvc
Silverlight is a RIA technology from Microsoft, best thought of as a Flash competitor. It uses XAML as a markup language.
MVC is a software pattern, but also used as part the name of a web application framework by Microsoft that utilizes this pattern - ASP.NET-MVC. It is an alternative to webforms (ASP.NET) - noted for being easier to write tests for and for plug-ability of IoC containers, view engines and more.

Resources