Slashdot Mirror


Cloudscape Gains Momentum

A reader writes: "There's been a lot of bits written recently about the growth of Open Source databases; as well as IBM's patent gift, as their release of the Java database Cloudscape. There's a contest running on SourceForge.net around Cloudscape; download and run with it." SF.net is part of OSTG, like Slashdot.

3 of 139 comments (clear)

  1. What's in a name? by Trejkaz · · Score: 3, Interesting

    Wasn't Cloudscape donated to the Apache project, where it changed its name to Derby? Don't IBM think that offering a download of "Cloudscape" is going to confuse developers?

    --
    Karma: It's all a bunch of tree-huggin' hippy crap!
  2. Here is a swell idea! by Anonymous Coward · · Score: 4, Interesting

    Lets see how many open source projects we can get going at one time to compete against one another with absolutely no standardization! YESSSS!

    But seriously -- this is getting out of hand. If every single company, individual, etc. starts an open source project what does that accomplish? Nothing. It brings about 100 different alternatives to the market most of which would never be viable in a commercial environment.

    News flash: devote time and effort to succesful projects that extend the reach of the open source community. Another open source database project is just well... another project.

  3. Re:Yes, it is. by Ryosen · · Score: 3, Interesting

    I think you might be misunderstanding what JNI is. Each Java runtime provides its own implementation to the native underlying system libraries. Java does not communicate through JNI for I/O of any kind.

    JNI itself is a generic abstraction layer to the underlying operating system. It provides a mechanism whereby dynamic libraries not directly supported by the runtime engine can still be accessed by a Java application.

    Threading, sockets and GUI are implemented via the native system libraries. AWT used to be very slow (as opposed to just being merely slow today) due to its own multi-layed abstraction. But at no time was JNI the conduit for these systems.

    Further reading: http://java.sun.com/docs/books/tutorial/native1.1/ concepts/index.html

    --

    Ryosen
    One man's "Troll, +1" is another man's "Insightful, +1".