jsampson / prevayler
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (26)
- Wiki (1)
- Graphs
-
Tree:
392a18e
commit 392a18e3a44907a942c827fed6d2d93dbd8a81a9
tree 2552747403e0bc33a4384ab0d12f32e8a323c7b0
parent ad4d3f4b8402de3020440225ee57c0e3330ea87e
tree 2552747403e0bc33a4384ab0d12f32e8a323c7b0
parent ad4d3f4b8402de3020440225ee57c0e3330ea87e
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Fri Mar 13 17:51:20 -0700 2009 | |
| |
CHANGES.txt | ||
| |
CONTRIBUTORS.txt | Thu Mar 12 19:33:40 -0700 2009 | |
| |
LICENSE.txt | Sat Dec 27 10:10:11 -0800 2008 | |
| |
README.txt | Fri Apr 10 10:07:55 -0700 2009 | |
| |
core/ | ||
| |
demos/ | Fri Apr 10 10:07:55 -0700 2009 | |
| |
docs/ | Thu Apr 02 19:22:12 -0700 2009 | |
| |
extras/ | Fri Mar 13 21:49:31 -0700 2009 | |
| |
factory/ | Fri Mar 13 21:49:31 -0700 2009 | |
| |
logo.svg | Wed Mar 11 12:29:23 -0700 2009 | |
| |
old-configurations/ | Sat Dec 27 10:10:11 -0800 2008 | |
| |
pom.xml | Fri Mar 13 17:51:20 -0700 2009 | |
| |
spikes/ | Fri Mar 13 12:57:58 -0700 2009 | |
| |
tests/ |
README.txt
===============================================
PREVAYLER (TM)
The Free Software Prevalence Layer for Java
===============================================
Prevalence is the simplest, fastest and most transparent architecture for
business object persistence, load-balancing and fault-tolerance.
Prevayler is the original free software prevalence layer implementation for
Java.
Free Software License
=========================
The Prevayler library is free software. See license.txt in the "docs" directory
for more details.
Features
============
Prevayler implements ACID transactions and transparent business object
persistence. It does not yet implement replication, which will enable
load-balancing and fault-tolerance.
Performance Scalability
===========================
10000 (ten thousand) times faster than Oracle. 3000 (three thousand) times
faster than MySQL.
These are typical results for the Prevayler query scalability test running
against DBMSs using JDBC, even when the DBMSs use local databases fully cached
in RAM.
You can compile and run the test for yourself. Its source code is available for
inspection in the "demos/scalability" directory starting at:
org.prevayler.demos.scalability.Main
It runs transaction-processing and query scalability tests against Prevayler
and any JDBC database. Just follow the instructions displayed on the console.
Required Java Platform
==========================
Prevayler is written and compiled against the APIs of the Java 2 Platform
Standard Edition version 1.4.
Running Prevayler
=====================
Prevayler is a prevalence framework. It is compiled in the
"prevayler-XYZ-N.N.jar" files available in this distribution.
* prevayler-core-2.4.jar
* prevayler-factory-2.4.jar
The core and factory modules are required for basic Prevayler operation.
Using these two alone does not introduce any external dependencies.
* prevayler-xstream-2.4.jar
* prevayler-skaringa-2.4.jar
The xstream and skaringa modules are optional extensions for using XML for
journal and snapshot serialization. Each requires the respective external
library (XStream or Skaringa).
* prevayler-log4j-2.4.jar
The log4j module is an optional extension implementing Prevayler's Monitor
interface using Log4J. It naturally requires Log4J.
* prevayler-mirror-2.4.jar
The mirror module is an experimental extension implementing simple
master-slave replication. It is not yet very robust, but some users are
already using it.
To run Prevayler, you must write an application of your own or use the
following demo applications.
Demo Applications
=====================
The Prevayler demo applications are available in the "demos" directory. They
have the main() method and can be compiled and run directly.
* demos/demo1: org.prevayler.demos.demo1.Main
A tiny application that finds prime numbers and stores them using
Prevayler.
* demos/demo2: org.prevayler.demos.demo2.Main
A bank application using Prevayler.
* demos/demo2: org.prevayler.demos.demo2.MainTransient
Exactly the same bank application running only in RAM.
* demos/demo2: org.prevayler.demos.demo2.MainReplicaServer
Exactly the same bank application with transparent replication enabled.
* demos/demo2: org.prevayler.demos.demo2.MainReplica
An application that connects to the MainReplicaSerever above and
transparently replicates the bank application.
* demos/jxpath: org.prevayler.demos.jxpath.Main
An example of using JXPath to query Java objects. See demos/jxpath/README
for more details.
* demos/tutorial: org.prevayler.tutorial.Main
A very simple quick-start example.
* demos/scalability: org.prevayler.demos.scalability.Main
Mentioned previously.
Learning Prevayler 1-2-3
============================
The prevalence concepts are ridiculously simple. Unlike using a database,
though, writing an application using a prevalence layer actually requires you
to know OO.
1. Read the "Object Prevalence Skeptical FAQ" in the "docs" directory.
2. Run the demos above and understand their source code. Use the javadoc in the
"apidocs" directory as a reference.
3. Write a little application of your own using the Bank demo as an example.
The source code to Prevayler is available in the "src" directory. You are
dearly invited to visit it. The core Prevayler implementation is only a couple
thousand lines of code.
Prevayler Pet Store
=======================
A more elaborate Prevayler tutorial including a web interface (JSP) can be
found at: http://sourceforge.net/projects/presto
Contact Information
=======================
All Prevayler resources are available from: http://www.prevayler.org/
If you know Java but have any trouble or doubt running Prevayler, please join
our discussion lists.
Ideas, contributions and suggestions are welcome too.
Thanks,
The Prevayler team.
----------------------------------------------------
Copyright 2001-2009 by Klaus Wuestefeld and the Prevayler team
"PREVAYLER" is a trademark of Klaus Wuestefeld.

