Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×
Java Programming IT Technology

Build Distributed Object Mgmt Frameworks for J2EE 8

An anonymous reader writes "Many enterprise Java technology developers build their own object management infrastructures to improve application performance. However, traditional object pools encounter problems in applications that run across distributed JVMs on multiple physical machines. In this article, Zhengrong Tang presents an object management framework that uses the concept of scopes to handle distributed systems with ease."
This discussion has been archived. No new comments can be posted.

Build Distributed Object Mgmt Frameworks for J2EE

Comments Filter:
  • ...it would take a pretty heavy object to outweigh the expense of the pooling outlined here - JMS message traffic, etc.

    But perhaps it would be handy for large documents or a connection to a database that was very slow or something like that...
    • It's an old story. Users want both scalability and performance. So, they cache objects to improve performance but they also want clustering to scale up to larger volumns.

      This article is just speaking to that need for both. It's a hard road, by the way, as each node in the cluster must notify the other nodes when an object gets dirty. The hard part is doing that in a way that scales, is accurate, and without a prohibitive cost in message traffic.

      • > cache objects [...] but also want clustering

        So true. Talk about conflicting forces...

        > without a prohibitive cost
        > in message traffic

        Yup. JMS probably isn't a bad way to do this, especially as all the infrastructure classes have already been loaded into the VM as part of the J2EE server.

        Not the most popular Slashdot thread ever, huh? Nobody here but us chickens...
  • This reminds me of Heap Layers [umass.edu] and others [utexas.edu]; they both try to reinvent malloc()/new().

"May your future be limited only by your dreams." -- Christa McAuliffe

Working...