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
df6047b6
Commit
df6047b6
authored
10 years ago
by
Konstantin Osipov
Browse files
Options
Downloads
Patches
Plain Diff
Udpate the front page.
parent
b519a1db
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/www-data.in/_text/index.md
+24
-19
24 additions, 19 deletions
doc/www-data.in/_text/index.md
with
24 additions
and
19 deletions
doc/www-data.in/_text/index.md
+
24
−
19
View file @
df6047b6
...
...
@@ -2,35 +2,40 @@ index:
main: |
# Introduction
Tarantool is an in-memory database designed to store the most volatile
and highly accessible web content. Tarantool has been extensively used
in production since 2009. It's **open source**, BSD licensed.
Tarantool is a NoSQL database running inside a Lua program. It's
created to store and process the most volatile and highly accessible
Web data. Tarantool has been extensively used in production since 2009.
It's **open source**, BSD licensed.
# Features
- a drop-in replacement for Lua 5.1, based on LuaJIT 2.0;
simply use *#!/usr/bin/tarantool* instead of *#!/usr/bin/lua* in your script,
- [MsgPack](http://msgpack.org) data format and MsgPack based client-server
protocol,
- two data engines: 100% in-memory with optional persistence and a
[2-level disk-based B-tree](http://sphia.org), to use with large data
sets,
- secondary key and index iterators support,
- asynchronous master-master replication,
- authentication and access control,
- [lowest CPU overhead](benchmark.html) to store or serve a
piece of content,
- optional Write Ahead Logging for persistency and reliability,
- universal data access with [rich Lua stored
procedures](http://github.com/mailru/tntlua), which can exchange messages
between each other or networked peers,
- asynchronous master-slave replication and hot backup.
piece of content
# Get started
``` bash
# apt-get install tarantool tarantool-client
# cd /etc/tarantool
# cp instances.available/example.cfg instances.enabled/fqueue.cfg
# cd /usr/share/tarantool/lua
# wget http://github.com/mailru/tntlua/raw/master/fqueue.lua -O init.lua
# service tarantool start
tarantool: Staring instances
Starting 'fqueue' ... ok
# apt-get install tarantool
# tarantool
# tarantool> myspace = box.schema.create_space('myspace')
# tarantool> myspace:create_index('primary')
# tarantool> tuple = {{ name = 'Tarantool', release = box.info.version,
# type = {{ 'NoSQL database', 'Lua interpreter'}}}}
# tarantool> myspace:auto_increment{{tuple}}
# - [1, {{'release': '1.6.1-445-ge8d3201', 'name': 'Tarantool'
# 'type': ['NoSQL database', 'Lua interpreter']}}]
```
A fast and customizable message queue server is up and running.
# Learn more
- [YCSB benchmark results](benchmark.html)
...
...
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