
| | |||||||
| General Software Software is what your computer runs. Word processors, spreadsheet programs... Discuss it all here. |
Register Now for FREE! | |||||
| |
| | LinkBack | Thread Tools | Display Modes |
| |||
| What do you feel is the best programming language to parse a large amount of data, using the least amount of memory? When I mean a large amount of data, I am talking about two-three terabytes of logs, within a reasonable time. |
| Sponsored Links | ||
| |
| |||
| hmmm, well depends what OS, what scenario, how much data, and what you have availible to you really. more details would most probably help on this one
__________________ -Rob Putt - Blog! CompuForums Secondary Administrator + Download the CompuForums Thread Viewer! + Add yourself to the Member Map! + Be sure that you are up-to-date with the rules. + Still Not A Member? Register Now! + Contact Us + Email Me! - rob at compuforums dot org +ipHideAway - Unfilter Anything Anywhere! Anonamize your surfing today!! |
| ||||
| C++ is great, but its getting old. I now use C# over it, though it has slower runtime. Rob will be the first person to tell you that Java is an excellent, powerful language, I don't know it personally though. So yeah, go C++ or Java for this job, BP
__________________ I am your friendly CompuForums moderator |
| ||||
| im learning visual basic and trust me, it is a HORRIBLE language, my suggestion is java or c++ |
| |||
| go with java, simply because its interpreted and because you won't need to modify it too much between operating systems, or recompile it for each platform.
__________________ -Rob Putt - Blog! CompuForums Secondary Administrator + Download the CompuForums Thread Viewer! + Add yourself to the Member Map! + Be sure that you are up-to-date with the rules. + Still Not A Member? Register Now! + Contact Us + Email Me! - rob at compuforums dot org +ipHideAway - Unfilter Anything Anywhere! Anonamize your surfing today!! |
| |||
| java probably isnt the best choice because it hides away all those things like pointers, which i imagine will be useful. any of the C family will probably do the trick, its down to the compiler as much as the language. i'd suggest going with whichever language of the C family that your most comfortable with |
| |||
| For large data sets C or C++ will probably be your best bet. Since Java is runs using bytecode, it'll be a little slower. However, Java much more portable than the C family. It'll depend on what your preference is. For large datasets, or mathmatical problems, I would stay away from interpreted languages, although Numpy is pretty good. |