vote up 1 vote down star

So today I was explaining how Groovy uses the "Meta Object Protocol" or MOP to someone. More specifically I was explaining how Grails and GORM use the MOP to provide dynamic finders. The queston I got once the use of the MOP was sufficiently explained was, "Would you use that technology in banking?". My answer is why not? I've worked at many investment banks and just about all of them has some form of Perl or other scripting language in production doing important tasks. I know tons of hedge funds using Python, so why is it strange to be using something that implements the MOP? After all this concept came from Smalltalk, and I know there are definitely several mission critical apps in smalltalk....

My answer to using it was, that I would use it provided I had a talented team that understood the important of having good test coverage. However, even in a pure Java system we should probably have good test coverage, it is just that some larger institutions have been slow on the uptake with TDD and unit testing in general.

flag

63% accept rate

2 Answers

vote up 2 vote down

Something tells me that "Would you use it in banking" might not be a great example of a mission-critical industry for much longer :-)

You're absolutely right though, when I worked at investment banks a number of our internal apps were written in Perl, and we had just started doing some basic Ruby development. Unfortunately, I don't know that it's possible to really counter this saying -- you'll find that the people you're trying to convince, in many cases, can't and don't want to be convinced.

link|flag
I agree. In my experience, adoption of new technology must be something the management is enthusiastic about. It has nothing to do with the merit of the technology. – Bill Karwin Nov 11 '08 at 7:40
vote up 1 vote down

My answer is "why is the question relevant?"

Better questions would be:

  • "Is it is suitable for my purpose?" or in general, "What is it suitable for?"
  • "How reliable is it?"
  • "How cost-effective is it?"
  • "How does it affect usability/number of bugs/production time/future improvements/...?"

Would you use an armoured van to transport vegetables? Would you use a laser cutter to slice your bread? Would you make hourly backups of your CD collection?

Precision and reliability may be important, but so are time and expense. I'm not saying that something "ready for banking" is overkill in other situations. All I'm saying is, whether or not something is "ready for banking" (etc.) isn't relevant to whether it's a good choice for another purpose.

If something is ready for banking, this might indicate that it's very reliable, which could indeed be important. Obviously the question you should ask isn't "Is it ready for banking?", but "Is it reliable enough?".

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.