This commit is contained in:
Ryszard Szopa 2013-07-18 19:34:05 -07:00
Родитель b173213a01
Коммит 55949171e5
2 изменённых файлов: 38 добавлений и 6 удалений

6
README
Просмотреть файл

@ -1,6 +0,0 @@
This the source code repository for the vitess project.
For documentation on how install and use vitess,
visit http://github.com/youtube/vitess/.
Unless otherwise noted, the vitess source files are distributed
under the BSD-style license found in the LICENSE file.

38
README.markdown Normal file
Просмотреть файл

@ -0,0 +1,38 @@
Vitess
======
Vitess is a set of servers and tools to facilitate scaling of MySQL
databases for the web. It serves all of YouTube's MySQL traffic.
Development
-----------
[Install Go](http://golang.org/doc/install).
``` sh
cd $WORKSPACE
sudo apt-get install automake libtool flex bison # to compile MySQL
git clone git@github.com:youtube/vitess.git src/github.com/youtube/vitess
cd src/github.com/youtube/vitess
./bootstrap.sh
. ./dev.env
```
Optionally:
``` sh
VTDATAROOT=... # $VTROOT/vt if not set
VTPORTSTART=15000
```
To run the tests:
``` sh
make # run the tests
```
License
-------
Unless otherwise noted, the vitess source files are distributed
under the BSD-style license found in the LICENSE file.