| Author |
Message |
|
|
|
Post subject: Best java architecture for performance?
Posted: Apr 09, 2004 - 06:36 PM
|
|
|
|
| I am starting a java project but wary of J2EE. Our project is a logistics management system with about 30 tables and up to 1,000 active users. What tools are out there that can give me fast development and faster performance? |
|
|
| |
|
|
|
 |
|
|
Post subject:
Posted: Apr 09, 2004 - 07:34 PM
|
|
|
|
This is a really loaded question.
Things to consider:
Rich Client, Web Client, VRU Client? or all
Transactional or Read-Only
Workflow
Business Rules
It sounds like the company has very limit experience with Java, I suggest getting a local consulting firm to help guide you. |
|
|
| |
|
|
|
 |
|
|
Post subject:
Posted: Apr 10, 2004 - 05:35 PM
|
|
|
|
I agree, this is a pretty broad scope. I would divide this into front end issues (e.g., how to talk to the client efficiently) and back end issues (e.g., how to talk to the database efficiently).
Since you are posting to a forum on OR mapping, I assume you are most concerned with the back end issues. If you don't care too much about performance, there are many options: JDBC (mostly hand-coded), JDO (OR mapping still mostly hand-coded), J2EE CMP (automated but not very performant in general), or any of the OR mapping tools out there like Persistence EdgeXtend, Oracle Toplink or the Hibernate solution.
If you are worried about performance, make sure you get a solution that allows you to optimize your OR mapping, takes advantage of tricks like batching updates to optimize the database activity, and includes caching for frequently used data
I agree that consulting would be of value. Check out the M2VP web site for one example: www.m2vp.com
Good luck! |
|
|
| |
|
|
|
 |
|
|
|
Post subject: High performance object-relational mapping
Posted: Apr 16, 2004 - 02:48 PM
|
|

Joined: Feb 03, 2004
Posts: 5
|
|
|
|
|
 |
|
|
|
Post subject: More ideas on object-relational mapping for performance
Posted: Apr 21, 2004 - 12:42 PM
|
|

Joined: Feb 03, 2004
Posts: 5
|
|
There is also a good discussion of Java performance bottlenecks here Eliminating Java Object-Relational Mapping Bottlenecks
The discussion covers a number of or mapping approaches (Persistence, Toplink, JDO) as well as various caching options (built-in, add-on, etc) |
_________________ - Chris Keene
www.persistence.com
"The World's Technology Leader for Object-Relational Mapping and Distributed Caching"
|
| |
|
|
|
 |
|
|
|
Post subject: More ideas on object-relational mapping for performance
Posted: May 20, 2004 - 07:13 PM
|
|
|
|
|
|
|
 |
|
|