Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/western/drizzle7
Copy of https://agentzh.org/misc/nginx/drizzle7-2011.07.21.tar.gz
https://github.com/western/drizzle7
Last synced: 18 days ago
JSON representation
Copy of https://agentzh.org/misc/nginx/drizzle7-2011.07.21.tar.gz
- Host: GitHub
- URL: https://github.com/western/drizzle7
- Owner: western
- License: gpl-2.0
- Created: 2020-01-04T12:16:15.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-04T12:18:44.000Z (almost 5 years ago)
- Last Synced: 2024-10-24T09:25:21.543Z (2 months ago)
- Language: C++
- Size: 9.92 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- Contributing: docs/contributing/code.rst
- License: COPYING
- Support: support-files/drizzle7.pc.in
- Authors: AUTHORS
Awesome Lists containing this project
README
Drizzle
-------A Lightweight SQL Database for Cloud and Web
http://www.drizzle.org
#drizzle on FreeNodeDrizzle is a community-driven open source project that is forked from the popular MySQL database.
The Drizzle team has removed non-essential code, re-factored the remaining code and modernized the code base moving to C++.
Charter
* A database optimized for Cloud infrastructure and Web applications
* Design for massive concurrency on modern multi-cpu architecture
* Optimize memory for increased performance and parallelism
* Open source, open community, open designScope
* Re-designed modular architecture providing plugins with defined APIs
* Simple design for ease of use and administration
* Reliable, ACID transactionalThe most current information is on the wiki, but are some essential links
and notes for getting started.http://drizzle.org/wiki/
https://launchpad.net/drizzleCompiling:
# If you got the source from bzr, run:
./config/autorun.sh
# The following steps are the same regardless of where you got the source
./configure --prefix=${HOME}/builds/drizzle &&
make &&
make test ||
echo "FAIL $?"More information on compiling can be found at:
http://drizzle.org/wiki/CompilingRunning Drizzle:
# be sure you configured with a prefix before running make install
make install
cd ${HOME}/builds/drizzle
./sbin/drizzled --no-defaults --port=XXXX \
--basedir=$PWD --datadir=$PWD/var \
>> $PWD/var/drizzle.err 2>&1 &See also:
http://drizzle.org/wiki/Starting_drizzled
http://drizzle.org/wiki/Contributing_CodeCheers!