Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×

Comment Lots of Different Languages are Used (Score 1) 371

I suppose as long as the programmers are ACTUALLY equally skilled it would be fine, but from what I've actually experienced in the real programming world, the C++ programmers are generally all fairly experienced skilled programmers who write effective efficient code. With Java programmers, I have seen quite the opposite, sure there are those experienced skilled programmers who could compete, but a LOT of Java programmers even ones with equal 10-12 years of experience, suck monkey balls at actually writing efficient code. Instead they write code that's JUUUST good enough. That said I know a number of people in the HFT market and the programming languages are ALL over the place, sure some of them are in Java and some are in C++, but there's not any one dominating language: there's plenty of Python, Scala, Perl, Groovy, and probably every language you can image. I believe Perl is actually still the biggest language because a lot of the financial analysts can actually write it directly and so do stuff that the front end systems don't normally allow.

Comment Re:Hype! (Score 1) 92

It really all depends on the particulars of the application, but in many cases they are totally correct that putting the logic in the application can be much more scalable. Often these are not all or nothing type arguments. It may be that you need a mix of traditional SQL for some stuff with business rules and all that jazz, another SQL setup for hosting certain types of dynamic data and then a NoSQL setup for the unstructured data. There is no one solution for all troubles, that's just the way it is.

Comment Re:Hype! (Score 2, Informative) 92

AC is 100% correct provided we're dealing with a local Access database and not Access fronting a SQL Server - in the latter case, all of the queries and what not take place on the SQL Server and not on the client. The latter case is not uncommon with Internal Applications that started off as an Access application and were later converted to run on SQL Server.

Slashdot Top Deals

Without life, Biology itself would be impossible.

Working...