Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
19dafc6d
Commit
19dafc6d
authored
10 years ago
by
Konstantin Osipov
Browse files
Options
Downloads
Patches
Plain Diff
Clear wording and disambiguate master/stable mess a bit better.
Add a link to Tarantool 1.5 web site.
parent
96b2dc29
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
doc/user/plugins.xml
+15
-15
15 additions, 15 deletions
doc/user/plugins.xml
doc/www-data.in/_text/index.md
+2
-1
2 additions, 1 deletion
doc/www-data.in/_text/index.md
doc/www-data.in/download.cmake
+7
-7
7 additions, 7 deletions
doc/www-data.in/download.cmake
with
24 additions
and
23 deletions
doc/user/plugins.xml
+
15
−
15
View file @
19dafc6d
...
...
@@ -57,7 +57,7 @@ This example assumes that MySQL 5.5 or MySQL 5.6 has been installed
<para>
The example was run on a Linux machine where the base directory
had a copy of the Tarantool source on ~/tarantool
-stable
, and
had a copy of the Tarantool source on ~/tarantool, and
a copy of MySQL on ~/mysql-5.5. The mysqld server is already running
on the local host 127.0.0.1.
</para>
...
...
@@ -95,7 +95,7 @@ Bye
# Build the Tarantool server. Make certain that "cmake" gets the right
# paths for the MySQL include directory and the MySQL libmysqlclient
# library which were checked earlier.
<prompt>
$
</prompt><userinput>
cd ~/tarantool
-stable
</userinput>
<prompt>
$
</prompt><userinput>
cd ~/tarantool
</userinput>
<prompt>
$
</prompt><userinput>
make clean
</userinput>
<prompt>
$
</prompt><userinput>
rm CMakeCache.txt
</userinput>
<prompt>
$
</prompt><userinput>
cmake . -DWITH_MYSQL=on -DMYSQL_INCLUDE_DIR=~/mysql-5.5/include\
</userinput>
...
...
@@ -108,7 +108,7 @@ Bye
...
-- Configuring done
-- Generating done
-- Build files have been written to: ~/tarantool
-stable
-- Build files have been written to: ~/tarantool
<prompt>
$
</prompt><userinput>
make
</userinput>
...
[ 49%] Built target core
...
...
@@ -137,8 +137,8 @@ Linking CXX shared library libmysql.so
# The script_dir is the directory where the init.lua file must be.
# Now create a file named /home/pgulutzan/tarantool_test/init.lua
# and put the following lines in it (again, change "/home/pgulutzan"
# to whatever the real directory is that contains tarantool
-stable
):
package.path = "/home/pgulutzan/tarantool
-stable
/src/module/sql/?.lua;"..package.path
# to whatever the real directory is that contains tarantool):
package.path = "/home/pgulutzan/tarantool/src/module/sql/?.lua;"..package.path
require("sql")
if type(box.net.sql) ~= "table" then
error("net.sql load failed")
...
...
@@ -149,19 +149,19 @@ require("box.net.mysql")
<userinput>
cd /home/pgulutzan/tarantool_test
</userinput>
<userinput>
mkdir box
</userinput>
<userinput>
mkdir box/net
</userinput>
<userinput>
cp ~/tarantool
-stable
/src/module/mysql/mysql.so ./box/net/mysql.so
</userinput>
<userinput>
cp ~/tarantool/src/module/mysql/mysql.so ./box/net/mysql.so
</userinput>
# Start the Tarantool server.
# Run it in the background but let the initial display be in the foreground.
# So it's possible to see the message that the plugin was loaded.
<prompt>
$
</prompt><userinput>
~/tarantool
-stable
/src/box/tarantool
&
</userinput>
<prompt>
$
</prompt><userinput>
~/tarantool/src/box/tarantool
&
</userinput>
2013-12-03 17:46:16.239 [12957] 1/sched C
>
version 1.5.1-271-g610930e
... loading /home/pgulutzan/tarantool_test/init.lua ...
...
2013-12-03 17:46:16.244 [12957] 1/sched C
>
entering event loop
# Type 'Enter' and then start the Tarantool client.
<prompt>
$
</prompt><userinput>
~/tarantool
-stable
/client/tarantool/tarantool
</userinput>
<prompt>
$
</prompt><userinput>
~/tarantool/client/tarantool/tarantool
</userinput>
<prompt>
localhost
>
</prompt>
# Create a Lua function that will connect to the MySQL server,
...
...
@@ -207,7 +207,7 @@ must explicitly state where they are when building Tarantool from source.
<para>
The example was run on a Linux machine where the base directory
had a copy of the Tarantool source on ~/tarantool
-stable
, and
had a copy of the Tarantool source on ~/tarantool, and
a copy of PostgreSQL on /usr. The postgres server is already running
on the local host 127.0.0.1.
</para>
...
...
@@ -242,7 +242,7 @@ INSERT 0 1
# Build the Tarantool server. Make certain that "cmake" gets the right
# paths for the PostgreSQL include directory and the PostgreSQL libpq
# library which were checked earlier.
<prompt>
$
</prompt><userinput>
cd ~/tarantool
-stable
</userinput>
<prompt>
$
</prompt><userinput>
cd ~/tarantool
</userinput>
<prompt>
$
</prompt><userinput>
make clean
</userinput>
<prompt>
$
</prompt><userinput>
rm CMakeCache.txt
</userinput>
<prompt>
$
</prompt><userinput>
cmake . -DWITH_POSTGRESQL=on -DPostgreSQL_LIBRARY=/usr/lib/libpq.so\
</userinput>
...
...
@@ -254,7 +254,7 @@ INSERT 0 1
...
-- Configuring done
-- Generating done
-- Build files have been written to: ~/tarantool
-stable
-- Build files have been written to: ~/tarantool
<prompt>
$
</prompt><userinput>
make
</userinput>
...
[ 49%] Built target core
...
...
@@ -267,21 +267,21 @@ Linking CXX shared library libpg.so
<prompt>
$
</prompt>
# Before starting Tarantool server, tell it where the PostgreSQL plugin is.
<prompt>
$
</prompt><userinput>
export TARANTOOL_PLUGIN_DIR=~/tarantool
-stable
/src/plugin/pg
</userinput>
<prompt>
$
</prompt><userinput>
export TARANTOOL_PLUGIN_DIR=~/tarantool/src/plugin/pg
</userinput>
<prompt>
$
</prompt>
# Start the Tarantool server.
# Run it in the background but let the initial display be in the foreground.
# So it's possible to see the message that the plugin was loaded.
<prompt>
$
</prompt><userinput>
~/tarantool
-stable
/src/box/tarantool
&
</userinput>
<prompt>
$
</prompt><userinput>
~/tarantool/src/box/tarantool
&
</userinput>
2013-12-06 13:01:51.518 [23978] 1/sched C> version 1.5.1-290-g45b93e7
... Loading plugin: ~/tarantool
-stable
/src/plugin/pg/libpg.so ...
... Loading plugin: ~/tarantool/src/plugin/pg/libpg.so ...
... Plugin 'postgresql' was loaded, version: 1
...
2013-12-06 13:01:51.531 [23978] 1/sched C> entering event loop
# Type 'Enter' and then start the Tarantool client.
<prompt>
$
</prompt><userinput>
~/tarantool
-stable
/client/tarantool/tarantool
</userinput>
<prompt>
$
</prompt><userinput>
~/tarantool/client/tarantool/tarantool
</userinput>
<prompt>
localhost
>
</prompt>
# Create a Lua function that will connect to the PostgreSQL server,
...
...
This diff is collapsed.
Click to expand it.
doc/www-data.in/_text/index.md
+
2
−
1
View file @
19dafc6d
...
...
@@ -42,4 +42,5 @@ index:
- [YCSB benchmark results](benchmark.html)
- [FAQ](faq.html)
- [Source repository](http://github.com/tarantool/tarantool)
- [Lua stored procedures repository]( http://github.com/mailru/tntlua)
- [Lua stored procedures repository](http://github.com/mailru/tntlua)
- [1.5 web site and downloads](http://stable.tarantool.org)
This diff is collapsed.
Click to expand it.
doc/www-data.in/download.cmake
+
7
−
7
View file @
19dafc6d
...
...
@@ -15,10 +15,10 @@ download:
The version string may also contain a git revision id, to ease
identification of the unqiue commit used to generate the build.
The current version of the
stable
branch is **@PACKAGE_VERSION@**.
The current version of the
master
branch is **@PACKAGE_VERSION@**.
An automatic build system creates, tests and publishes packages
for every push into the
stable
branch. All binary packages contain
for every push into the
master
branch. All binary packages contain
symbol information. Additionally, **-debug-**
packages contain asserts and are compiled without optimization.
...
...
@@ -129,15 +129,15 @@ download:
[Apple Developer]: https://developer.apple.com/downloads/
#
Development
branch
#
Old master
branch
In the same manner as for [the
stable
branch][
stable
], every push into
[the master
branch][master
] is [available online][builds-
m
].
The server
roadmap
is maintained on [Github][issues].
In the same manner as for [the
master
branch][
master
], every push into
[the
old
master
][stable
] is [available online][builds-
s
].
The server
bugs database
is maintained on [Github][issues].
[stable]: http://github.com/tarantool/tarantool/tree/stable
[master]: http://github.com/tarantool/tarantool/tree/master
[builds-
m
]: http://tarantool.org/dist/
master
[builds-
s
]: http://tarantool.org/dist/
stable
[issues]: http://github.com/tarantool/tarantool/issues
## Connectors
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment