How to justify using a scripting language as part of a project

Posted by sylvanaar on Stack Overflow See other posts from Stack Overflow or by sylvanaar
Published on 2009-12-09T13:22:19Z Indexed on 2010/05/22 14:00 UTC
Read the original article Hit count: 229

Filed under:
|
|
|
|

I have a specific project in which I want to use either a scripting language + C, or as an alternative a 100% Java solution.

The program adapts a legacy system for use with other moderns systems.

Basically, I have few choices as to what language I can use. I have C/C++, Java 1.4, and I have also compiled the Lua for this environment.

The program does 'screen scraping' and has to deal with alot of strings. That part of the code is highly variable.

Most of the developers at my company use C, so - my original design was to write some portions in C, and use Lua for the part that dealt with strings and changed freqently. I was told 'You have to justify your use of the scripting language.' So i reworked my design using 100% Java, and was told - Java wont have enough performance. You should do the whole thing in C.

I'm not controlling lasers or doing image processing - just some screen scraping. I still have to provide justification for using anything but C - so what justification can I provide?

© Stack Overflow or respective owner

Related posts about java

Related posts about c