1.

How Do You Optimize Stateful Session Beans?

Answer»

• Tune Stateful SESSION beans CACHE size to avoid overhead of activation and passivation process.
• Set optimal Stateful session bean age(time-out) to avoid resource congestion.
USE 'transient' key word for unnecessary variables of Stateful session bean to avoid serialization overhead.
REMOVE Stateful session beans explicitly from client USING remove() method.

• Tune Stateful session beans cache size to avoid overhead of activation and passivation process.
• Set optimal Stateful session bean age(time-out) to avoid resource congestion.
• Use 'transient' key word for unnecessary variables of Stateful session bean to avoid serialization overhead.
• Remove Stateful session beans explicitly from client using remove() method.



Discussion

No Comment Found