2155.2.1
by Stewart Smith
add some things to the README from the website. give a bit of information about the project in the README |
1 |
Drizzle
|
2 |
-------
|
|
3 |
||
4 |
A Lightweight SQL Database for Cloud and Web |
|
5 |
||
6 |
http://www.drizzle.org |
|
7 |
#drizzle on FreeNode |
|
8 |
||
9 |
Drizzle is a community-driven open source project that is forked from the popular MySQL database. |
|
10 |
||
11 |
The Drizzle team has removed non-essential code, re-factored the remaining code and modernized the code base moving to C++. |
|
12 |
||
13 |
Charter |
|
14 |
* A database optimized for Cloud infrastructure and Web applications |
|
15 |
* Design for massive concurrency on modern multi-cpu architecture
|
|
16 |
* Optimize memory for increased performance and parallelism
|
|
17 |
* Open source, open community, open design
|
|
18 |
||
19 |
Scope |
|
20 |
* Re-designed modular architecture providing plugins with defined APIs |
|
21 |
* Simple design for ease of use and administration
|
|
22 |
* Reliable, ACID transactional
|
|
23 |
||
24 |
||
665.1.3
by Eric Herman
added some essential notes to the README |
25 |
The most current information is on the wiki, but are some essential links |
26 |
and notes for getting started. |
|
27 |
||
28 |
http://drizzle.org/wiki/ |
|
29 |
https://launchpad.net/drizzle |
|
30 |
||
31 |
Compiling: |
|
992.1.3
by Monty Taylor
Clarified instructions in README. |
32 |
# If you got the source from bzr, run: |
33 |
./config/autorun.sh |
|
34 |
# The following steps are the same regardless of where you got the source |
|
665.1.3
by Eric Herman
added some essential notes to the README |
35 |
./configure --prefix=${HOME}/builds/drizzle && |
36 |
make && |
|
37 |
make test || |
|
38 |
echo "FAIL $?" |
|
39 |
||
40 |
More information on compiling can be found at: |
|
41 |
http://drizzle.org/wiki/Compiling |
|
42 |
||
43 |
Running Drizzle: |
|
44 |
# be sure you configured with a prefix before running make install |
|
45 |
make install |
|
46 |
cd ${HOME}/builds/drizzle |
|
47 |
./sbin/drizzled --no-defaults --port=XXXX \ |
|
48 |
--basedir=$PWD --datadir=$PWD/var \ |
|
49 |
>> $PWD/var/drizzle.err 2>&1 & |
|
50 |
||
51 |
See also: |
|
52 |
http://drizzle.org/wiki/Starting_drizzled |
|
53 |
http://drizzle.org/wiki/Contributing_Code |
|
54 |
||
55 |
Cheers! |