Title: Beginners Performance Guide
# OpenJPA Beginners Performance Guide
This guide is targeted at new users of OpenJPA that would like to know some
of the important performance tuning properties. Please do not mistake this
for an exhaustive tuning guide. This is just enough information to make a
developer dangerous, not lethal.
## Enhancement
OpenJPA uses byte-code weaving technologies to enhance user created Entity
class objects at build time or dynamically at run time. This allows us to
efficiently handle these objects.
Follow the [Entity Enhancement](entity-enhancement.html) instructions on how to properly enhance your Entities.
OpenJPA also has a feature that will auto-generate new subclasses or proxy
objects that front the user's Entity objects at run time, but *this feature
is not recommended for use*. There are numerous functional issues reported
and it doesn't perform nearly as well. If you ever see the following
message you are using the non-recommended subclassing approach to
enhancement.
> 3328 pu_name INFO \[main\] openjpa.Enhance - Creating subclass for "\[ class
org.apache.openjpa.entity.E1 , class org.apache.openjpa.entity.E2 \]". This
means that your application will be less efficient and will consume more
memory than it would if you ran the OpenJPA enhancer. Additionally, lazy
loading will not be available for one-to-one and many-to-one persistent
attributes in types using field access; they will be loaded eagerly
instead.
It is recommended to set the following property to ensure that you don't
use this enhancement approach.
## Connection Pooling
As of the 2.1.0 release OpenJPA bundles [Apache Commons DBCP](http://commons.apache.org/dbcp/)
as part of the binary download. When running in JSE environments a default
connection pool will be plugged in with the provided database configuration
properties (Once [OPENJPA-1764](https://issues.apache.org/jira/browse/OPENJPA-1764)
is completed) . Most JEE container environments should provide some level
of connection pooling.
In releases prior to 2.1.0 add DBCP to your classpath and use the following
example to figure out how to configure pooling.
## Caching
Insert details about what those two properties give me.