Configuring ATI Radeon Linux drivers on Ubuntu

Download the ATI Radeon drivers ‘fglrx’ from the Synaptic Package Manager.

Edit /etc/X11/xorg.conf:

Add to ‘Section “Module”‘: Load “GLCore”

In ‘Section “Device”‘ change “ati” to “fglrx”

After restaring, check output in glxinfo – direct rendering should be ‘yes’ and ‘renderer string’ should show ‘MOBILITY/RADEON 9000 DDR Generic’

Initially I had errors running glxinfo – this post here explains the problem and provides a fixed (older?) .so file to replace one in the lates fglrx dirver.

Adding Declarative Caching to your App with Spring 2.0

For certain types of data (frequently accessed, but infrequently changed), caching is an easy approach to improving performance by minimizing database roundtrips.

BEA’s dev2dev site have an interesing article on how to use declarative caching. With this approach using Spring, methods in which you want to take advantage of caching can be declared and wired up to the Caching provider in the Spring Application Context file, instead of having to hard-code the access to the Cache API within your code, which would make the code harder to follow, maintain, and would tie you to a particular cache provider.