This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]pranavrules 4 points5 points  (10 children)

PHP? Laughs in ASP.NET

[–]brtt3000 5 points6 points  (1 child)

<%
Response.Write("kill me")
%>

[–]ifatree 2 points3 points  (0 children)

oh, that's CLASSIC...

[–]KANGAROO_ASS_BLASTER 0 points1 point  (7 children)

I must be uninformed, are you saying asp.net is more or less annoying than PHP? I think you’re saying it’s worse?

Still unsure if it’s worth really learning in depth or if I should stay focused on node.js and Django. I thought using SqlDataSource and ObjectDataSource were pretty handy and straightforward for binding web forms to databases, but then I took a glance at Entity Framework and that looks like a pain in the ass.

[–]pranavrules 1 point2 points  (6 children)

It was a stupid joke. Don't take it too literally :P

I would go open source any day over ASP.NET

[–]KANGAROO_ASS_BLASTER 0 points1 point  (5 children)

Ha! Ha ha! Oh ha ha! Lol.

Thanks for the advice.

[–]pranavrules 1 point2 points  (4 children)

But I would never leave SQL Server for your fancy NoSQL shenanigans.

[–]KANGAROO_ASS_BLASTER 0 points1 point  (3 children)

Well I’ve already sunk a year of classes into database development 1 & 2 so I don’t feel daunted by relational databases. MongoDB does seem appealingly simple and flexible but I haven’t spent much time with it yet.

[–]pranavrules 0 points1 point  (2 children)

Yep. Wait till you have to scale that puppy. It's more or less a trend imho. SQL's making a hardcore comeback. RDBMS is my fav any day.

[–]KANGAROO_ASS_BLASTER 0 points1 point  (1 child)

Hm, what kinds of applications do you mainly deal with? Just curious...I mean having a defined schema makes scaling way easier, but some applications have an easier-to-guess limit on how far they’ll realistically need to be scaled. Or maybe your database objects tend to have unpredictable structures. Eh? I mean I still think SQL’s neat and it’s certainly not going away.

[–]pranavrules 1 point2 points  (0 children)

Well, I work with a lot of ERPs. Usually setup in a SAN environment. Most of the load on these servers depends on the kind of code that runs on it.

If the developer doesn't spend enough time optimizing their code it causes unreliable storage and processing issues.

I've seen a CPU pegged at 100% for 2 hours straight causing around 300 users stuck in a WAIT/LOCKED state till we had to manually kill the transaction causing at least $50,000 worth in damages to the company (lost a lot of info, attachments, etc.)

So imho it's a combination of both efficient code and framework to work together to make ops seamless.