stargeek
PHP news website logo.
home    PHP scripts    articles    seo tools    links    search    contact    shop    realtors


Easy Hibernate Cache 0.6







Easy Hibernate Cache 0.6

Easy Hibernate Cache 0.6 12/08/2003 01:07 PM

A fast and simple, pure Java, in-process cache.




This is a GrokNews Entry: (what is grok?)





Similar Items

Easy Hibernate Cache 0.6

Grok Headline matches for Easy Hibernate Cache 0.6

Hibernate 2.1 (2.x)


Hibernate 2.1 (2.x) 12/12/2003 10:09 PM
Relational persistence for idiomatic Java.

Hibernate 1.2.2 released


Hibernate 1.2.2 released 01/06/2003 09:28 AM
Hibernate is a powerful, ultra-high performance object/relational persistence and query service for Java. Hibernate lets you develop persistent objects following common Java idiom, including association, inheritance, polymorphism, composition and the Java collections framework. To support a rapid build procedure, Hibernate rejects the use of code generation or bytecode processing. Instead runtime reflection is used and SQL generation occurs at system startup time. Hibernate supports Oracle, DB2, MySQL, PostgreSQL, Sybase, SAP DB, HypersonicSQL, Microsoft SQL Server, Progress, Mckoi SQL, Pointbase and Interbase. Hibernate supports an ODMG 3 interface alongside a more expressive custom API. Of course, Hibernate integrates elegantly with J2EE application servers and with other popular open source solutions like XDoclet. Version 1.2.2 fixes a minor bug introduced in 1.2.1.

Hibernate 1.2 beta 1


Hibernate 1.2 beta 1 11/11/2002 09:22 PM
Hibernate is a powerful, high performance object/relational persistence and query service for Java. Hibernate lets you develop persistent objects following common Java idiom, including association, inheritance, polymorphism, composition and the Java collections framework. To support a rapid build procedure, Hibernate rejects the use of code generation or bytecode processing. Instead runtime reflection is used and SQL generation occurs at system startup time. Hibernate supports Oracle, DB2, MySQL, PostgreSQL, Sybase, SAP DB, HypersonicSQL, Microsoft SQL Server, Progress, Pointbase, Mckoi SQL and Interbase. Version 1.2 beta 1 introduces a few important bug fixes and one significant new piece of functionality. New Features ========== * Normalized (table-per-subclass) mapping strategy for databases with ANSI-style OUTER JOIN and CASE * Hibernate.initialize() forces initialization of given proxies or lazy collections Deprecations ========== * findIdentifiers() is now deprecated * hibernate-mapping-1.1.dtd is now preferred to hibernate-mapping.dtd * previously deprecated insert() and create() methods were removed from the Session interface Major Bugfixes =========== * Fixed JNDI functionality for JNDI servers that use serialization and ignore Referenceable * Fixed problems querying table-per-concrete-class or mixed strategy inheritence hierarchies * Fixed a bug where deletions where not cascaded to som one-to-one associations Q&A ==== * Why is this release a "beta"? The beta designation refers to the fact that the new 1.2 functionality is immature. It is not meant to imply that this release is of lower quality that the previous 1.1.8 release. For 1.1.8 functionality, this release is intended to be of *higher* quality, since a number of bugs were fixed. * Is 1.2 beta 1 a drop-in replacement for 1.1.8? No. Specifically several deprecated methods were removed from the Session interface. * So should I upgrade to the new version? Yes, most probably. But please take the time to test your system against the new hibernate.jar. * Will you be doing a 1.1.9 release that includes only bugfixes (ie. a drop-in replacement for 1.1.8)? Only if absolutely necessary. If enough people have a really good reason for needing this, I will do it - but it will be an annoying task and requires that I branch CVS which I would prefer to avoid. * What further work is planned for the 1.2 stream? - support for the normalized mapping strategy on Oracle - An overdue refactoring of code that generates SQL strings, replacing direct StringBuffer manipulation with a new SQL query model - Make certain that the toolset is fully up to date with the new DTD - Full "roundtripping" functionality in the toolset

Hibernate 1.1.8 released


Hibernate 1.1.8 released 10/30/2002 10:57 AM
Hibernate is a powerful, high performance object/relational persistence and query service for Java. Hibernate lets you develop persistent objects following common Java idiom, including association, inheritance, polymorphism, composition and the Java collections framework. To support a rapid build procedure, Hibernate rejects the use of code generation or bytecode processing. Instead runtime reflection is used and SQL generation occurs at system startup time. Hibernate supports Oracle, DB2, MySQL, PostgreSQL, Sybase, SAP DB, HypersonicSQL, Microsoft SQL Server, Progress, Pointbase, Mckoi SQL and Interbase. Version 1.1.8 introduces major query language enhancements and substantially reworks Hibernate's transparent lazy object initialization. Changelog: https://sourceforge.net/project/shownotes.php?release_id=119289 Homepage: http://hibernate.sourceforge.net Full feature list: http://hibernate.sourceforge.net/features.html

Ready to Hibernate.


Ready to Hibernate. 03/11/2003 09:43 AM

Finally, I'm ready to start working on the Hibernate implementation of the Roller Weblogger backend. I ended up doing a lot more refactoring than I had intended. I told you about how I moved code from the Castor implementation into abstract base classes that can be used by the Hibernate implementation. Now I'll describe the changes that I made in the Roller build and code-generation process.

In the original Roller build process, illustrated in Figure 4 of the article Building a J2EE Weblogger, I used abstract javax.ejb.EntityBean classes as the meta-data basis for generating code via the XDoclet EJBDoclet task. I was subverting EJBDoclet: using it to generate Data Objects, Struts Forms, and Castor mappings but not using any of it's EJB output.

That worked pretty well, but eventually it became a problem. The generated Data Objects were just dumb data-holders and, over time, we realized that they need to be smarter "business objects." The Data Objects were regenerated on every build and that made it diffucult, if not impossible, to add new methods, new logic, and new collections.

The new Roller build/code-gen process

Diagram of Roller build process

The new Roller build process, or at least the code-generation part of it, is shown above. We now start with some hand written "Plain Old Java objects" or POJOs. We still have to subvert EJBDoclet because the XDoclet <strutsform> and <castormapping> can only exist inside EJBDoclet.

I had to use Matt Raible's patched version of <strutsform> (from his struts-resume example) because the one in XDoclet 1.2b2 works only if the source class extends javax.ejb.EntityBean and the new Roller POJO's don't do that. Matt and I consider this to be a bug in EJBDoclet, but I'm not sure the XDoclet guys agree. Maybe Roller should define it's own <strutsform> that works on any POJO and that inserts validator tags (something Matt also added in his struts-resume example).

The Roller build/code-gen process is still not perfect, but it's "good enough" for me to begin my Hibernate implementation of the Roller Business Tier interfaces. I'll be blogging as I go so stay tuned.


Hibernate 1.1beta1 released


Hibernate 1.1beta1 released 08/05/2002 10:45 PM
Hibernate is a powerful, high performance object/relational persistence and query service for Java. Hibernate lets you develop persistent objects following common Java idiom, including association, inheritance, polymorphism, composition and the Java collections framework. To support a rapid build procedure, Hibernate rejects the use of code generation or bytecode processing. Instead runtime reflection is used and SQL generation occurs at system startup time. Hibernate supports Oracle, DB2, MySQL, PostgreSQL, Sybase, SAP DB, HypersonicSQL, Microsoft SQL Server, Progress, Mckoi SQL and Interbase. Version 1.1beta1 introduces the following enhancements: * brand new Query API supporting pageable result sets and named parameters * query language enhancements including subqueries * reworked documentation in DocBook * JCS cache integration * improved prepared statement cache * minor bugfixes and performance optimizations

Hibernate 1.0rc3 (0.9.17) released


Hibernate 1.0rc3 (0.9.17) released 07/03/2002 11:09 AM
Hibernate is a powerful, high performance object/relational persistence and query service for Java. Hibernate lets you develop persistent objects following common Java idiom, including association, inheritence, polymorphism, composition and the Java collections framework. No code generation or bytecode processing is required. Instead, in pursuit of a shorter build procedure, runtime reflection is used. Hibernate supports Oracle, DB2, MySQL, PostgreSQL, Sybase, MS SQL Server, Mckoi SQL, Progress, HypersonicSQL, and Interbase.

Tropical Primate Found to Hibernate


Tropical Primate Found to Hibernate 06/24/2004 01:37 AM

Hibernate - A J2EE Developers Guide


Hibernate - A J2EE Developers Guide 04/06/2005 05:24 PM

Hibernate tests in place and remember
me.


Hibernate tests in place and remember
me.
03/11/2003 09:43 AM

I developed Roller without unit testing, but I'm not going proceed with the Hibernate implementation without having tests in place. Last night, I checked in tests for the Roller NewsfeedManager, the simplest of the Roller backend managers. The next step is to write or generate Hibernate mappings for the NewsfeedData object and code up a new NewsfeedManagerImpl.

While I was working on that, Ma tt implemented remember me, added email notification for comments, and upgraded his site to the latest Roller from CVS (not even I am ready to do that ;-)


Ruby On Rails Showdown with Java
Spring/Hibernate


Ruby On Rails Showdown with Java
Spring/Hibernate
04/04/2005 11:09 AM

Easy-to-Spot Air Security Might Be Easy
Target (Los Angeles Times)


Easy-to-Spot Air Security Might Be Easy
Target (Los Angeles Times)
05/31/2004 05:38 AM
Los Angeles Times - WASHINGTON — As they settled into first class on American Airlines Flight 1438 from Chicago to Miami, they were supposed to be the last line of defense against terrorists — two highly trained U.S. air marshals who would sit unnoticed among the ordinary travelers but spring into action at the first sign of trouble.

Easy Come, Easy Go: Antigua Loses To US
Over Gambling


Easy Come, Easy Go: Antigua Loses To US
Over Gambling
04/07/2005 05:39 PM
Antigua has been battling the US for some time over the US's ban on online gambling. For many years, Antigua-based online casinos have run into problems with US laws. Two years ago, they went to the WTO claiming that the US ban on online gambling was a violation of a fair trade agreement the two nations had signed. It took the WTO almost exactly one year to point out that Antig ua was probably right. Of course, that wasn't acceptable for politicians who seem to think gambling is pure evil (except, of course, when it contributes to local tax coffers) -- so, while they planned to ignore the ruling completely (we're the US, we don't follow international rulings unless we agree with them), they did file an appeal, just for fun. It turns out that appeal worked, and the WTO has changed its mind, saying that banning gambling is a "moral issue," and therefore not subject to the fair trade agreement the two nations signed. So, sorry for all you online gambling addicts in the US, but you're back to breaking the law again.

Backup Hard Drives: CMS ABSplus And
Maxtor OneTouch Offer Easy Backup And
Easy Storage


Backup Hard Drives: CMS ABSplus And
Maxtor OneTouch Offer Easy Backup And
Easy Storage
12/19/2003 11:33 AM
Both drives do a fine job of simplifying backup and providing external storage space. The ABSplus is a focused backup device that's easy to use, right out of the box, for backup and restoration, whereas Maxtor's cheaper and quieter drive is better for people who want extra disk space and more backup flexibility. By Adam Engst (Macworld via MyAppleMenu)

CGI::Cache 1.41


CGI::Cache 1.41 06/09/2004 05:18 PM
A Perl module to cache output of time-intensive CGI scripts.

CGI-Cache-1.41


CGI-Cache-1.41 06/09/2004 05:44 PM

CGI-Cache-1.41.1


CGI-Cache-1.41.1 09/15/2004 11:38 PM

CGI-Cache-1.41.2


CGI-Cache-1.41.2 09/16/2004 05:08 PM

CGI::Cache 1.41.1


CGI::Cache 1.41.1 09/15/2004 09:06 PM
A Perl module to cache output of time-intensive CGI scripts.

Geo-Cache-0.05


Geo-Cache-0.05 06/19/2004 04:48 PM

Geo-Cache-0.06


Geo-Cache-0.06 06/25/2004 12:39 AM

B/Cache


B/Cache 12/25/2003 10:18 AM
B/cache release 0.7.0

CGI-Cache-1.4200


CGI-Cache-1.4200 03/14/2005 05:49 PM

Cache-FastMmap-1.06


Cache-FastMmap-1.06 05/21/2004 01:00 AM

Folder Cache v2.6


Folder Cache v2.6 12/25/2003 12:49 AM
Folder Cache lists the recently used and favorite folders in your computer's open/save dialog windows and in Windows Explorer.You can access this list by pressing the Folder Cache button, which appears in most "Open..."/"Save..." windows near the "Folder" listbox, or with right mouse click in Windows Explorer. Why should you have to go through the "select folder" process each time when you want to open or save a file ? [Shareware $19.00 30 Days 573 KB]

Cache-Memcached-1.14


Cache-Memcached-1.14 07/27/2004 04:37 PM

CGI-Cache-1.4142


CGI-Cache-1.4142 02/07/2005 01:25 AM

Make-Cache-1.011


Make-Cache-1.011 02/11/2004 09:29 AM

Cache-Memcached-1.13


Cache-Memcached-1.13 05/30/2004 05:35 PM

Smart Cache


Smart Cache 04/02/2005 01:44 PM
Security hole fixed

Top Tip: Difference between L2 and L3
cache?


Top Tip: Difference between L2 and L3
cache?
02/10/2004 03:00 AM
What is L2 cache? What is L3 cache? What is the major difference between the two.

Make-Cache-1.010


Make-Cache-1.010 02/10/2004 06:47 PM

Cache In Your Chips And Get A Bus!


Cache In Your Chips And Get A Bus! 07/21/2004 09:41 PM
WebDevInfo Jul 22 2004 0:11AM GMT

Cache-Mmap-0.08


Cache-Mmap-0.08 10/30/2003 06:07 PM

Flash Cache


Flash Cache 04/30/2004 12:02 PM
Google now indexes the text Macromedia Flash files, the format behind those often-annoying animations. For example, you can now search for all flash files that say "skip intro". [via dim blinks]...

Maypole-Cache-1.2


Maypole-Cache-1.2 07/19/2004 09:53 AM

Cache-FastMmap-1.07


Cache-FastMmap-1.07 08/20/2004 06:16 AM

IE Cache Trasher X 1.4 X


IE Cache Trasher X 1.4 X 03/13/2003 10:25 AM
IE Cache Trasher could potentially recover hundreds of megabytes of disk space on your hard drive! IE Cache Trasher quickly and easily deletes the Internet Explorer download cache, which stores incomplete and broken downloads. If left unchecked, the file can grow to great proportions; mine was 119 MB when I first checked!

Maypole-Cache-0.01


Maypole-Cache-0.01 07/06/2004 05:14 PM

Grok Description matches for Easy Hibernate Cache 0.6
GrokA matches for Easy Hibernate Cache 0.6

Caching with PEAR::Cache


Caching with PEAR::Cache 04/09/2004 04:02 PM
So, your web site is starting to get popular? With popularity comes more page request, and with more page requests comes higher server load. Don't get in a situation where you can't serve up the pages. Build your application to handle the load. That's where PEAR::Cache comes in. In this tutorial, Timothy will show you how to use it.

Google Cache Page Size Limit Change


Google Cache Page Size Limit Change 04/06/2005 12:30 PM
"Google searches are now returning SERPs showing cached page size greater than 101k. It's been 101k for as long as I can remember."

DeepSix fixes font cache problem in
Jaguar, Panther


DeepSix fixes font cache problem in
Jaguar, Panther
12/15/2003 03:21 PM
Prolific utility developers If Then Software released their latest creation, DeepSix, on Monday. This simple utility addresses an issue that causes some design applications, specifically Macromedia's Flash and many Adobe programs, to unexpectedly quit in Mac OS X version 10.2 or 10.3.

Clear Java cache folder for extra drive
space


Clear Java cache folder for extra drive
space
08/16/2004 10:00 AM
By default, all Java applets you view online are downloaded and stored in ~/Library/Caches/Java Applets/cache/javapi/v1.0. Also by default, this folder can amass over 50 MB of Java applets -- though it's not much in these day...

IE Cache Trasher X 1.4


IE Cache Trasher X 1.4 03/13/2003 10:22 AM
IE Cache Trasher deletes the Internet Explorer download cache which stores incomplete and broken downloads. If left unchecked, the file can grow to great proportions. Release notes: Ported to AppleScript Studio.

Cache-Web-Lite-0.02


Cache-Web-Lite-0.02 05/20/2004 05:44 AM

Easy Hibernate Cache 0.6

The following phrases have been identified by the grok system as matching this entry: ibatis autoreconnect "large sets of data" manipulation tutorial java hibernatetutorial refresh jcs caching hibernate jsp hibernate tutorials with samples hibernate "cache expiry" disabling the cache for a web page in jsp insert problem hibernate mckoi hibernate collections cache

















Also check out:


Grok

Ipod Porn on the
Rise

Brief Abstract of
Wikipedia's
Mesothelioma Cancer
page

Get first aid
instructions in your
cell phone

IE is crap
JSPWiki gains
podcasting support

GDB 6.0
CourseForum 3.1
Syntext Dtd2Xs 1.4
SCO suit digs into
copyright

Apple gets 14
percent of the
popular vote

Innovation stems
boredom

EU presses for laws
against spam

Injections said to
hamper bioterror
fight

Nanosys gains
momentum in nascent
industry

MessageLabs: Two
thirds of spam sent
via hijacked PCs

FSP releases Silent
Solution Kit for PC
processors

Heads-up displays go
from cockpits to
helmets

Response Biomedical
Files For US FDA
Market Clearance of
Additional RAMP
Cardiac Tests

Creo Completes
Acquisition of Plate
Manufacturing
Facility

DT Communications
Engaged

QHR Announces
Another $650,000 in
New Contracts

Etraffic Solutions
Director Robin
Poncia Wins DEVA

P.Z. Resort Systems
Arranges $100,000
Financing

Imagis Receives
Approval for Amended
Share Option Plan
and Issues Further
Stock Options and
Shares-f

AnorMED Announces
New Stem Cell
Transplantation Drug
Candidate

Gemcom Announces
Debt Repayment

Steve Jobs on Music,
Movies, Apple

Apple to release
iMovie 3.5?

Environmental
Scorecard

Good books. Eat 'em
up. Yum.

Judge blocks 'ghost
fleet' project

Printed Airline
Travel Guides Doing
Fine, Despite The
Internet

Keep Out The Noise,
Stay Sane

Microsoft CRM goes
global

wzdftpd
Pocketbook
PHP Layers Menu
Qt universal circuit
simulator

rpc.mountd
Vulnerabilities
update on IRIX

Immunix Secured OS
7.3, 7+ rsync update

cdwrite 1.3 insecure
tmp file handling
vulnerability.

eZ Multiple Packages
Stack Overflow
Vulnerability

I'm Hatin' It
lynda.com training
available for
QuarkXPress 6

Uniden's waterproof
cordless phone

Turning the Gameboy
Advance into an
N-Gage: What could
have been

Rickshaw cellphones
in India

Review: StarOffice 7
-- innovation in
action

GBP2.7bn NHS IT
contracts awarded

Jobs interviewed by
Rolling Stone

Halo for Mac reaches
Gold Master;
shipping this week

Rogue Amoeba
releases Nicecast
1.0

Griffin releases
iTrip Station Finder
2.0

ALSA driver 1.0.0rc2
(Development)

qconfirm 0.12.1
what is grok?