1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-26 13:15:48 +00:00
gitea/vendor/github.com/pingcap/tidb
Thomas Boerger b6a95a8cb3 Integrate public as bindata optionally (#293)
* Dropped unused codekit config

* Integrated dynamic and static bindata for public

* Ignore public bindata

* Add a general generate make task

* Integrated flexible public assets into web command

* Updated vendoring, added all missiong govendor deps

* Made the linter happy with the bindata and dynamic code

* Moved public bindata definition to modules directory

* Ignoring the new bindata path now

* Updated to the new public modules import path

* Updated public bindata command and drop the new prefix
2016-11-30 00:26:36 +08:00
..
ast Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
column Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
context Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
ddl Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
domain Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
evaluator Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
executor Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
infoschema Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
inspectkv Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
kv Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
meta Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
model Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
mysql Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
optimizer Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
parser Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
perfschema Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
privilege Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
sessionctx Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
store Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
structure Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
table Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
terror Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
util Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
bootstrap.go Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
CONTRIBUTING.md Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
Dockerfile Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
driver.go Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
gitcookie.sh Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
make.cmd Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
Makefile Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
README.md Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
session.go Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00
tidb.go Integrate public as bindata optionally (#293) 2016-11-30 00:26:36 +08:00

logo Build Status

What is TiDB?

TiDB is a distributed SQL database. Inspired by the design of Google F1, TiDB supports the best features of both traditional RDBMS and NoSQL.

  • Horizontal scalability
    Grow TiDB as your business grows. You can increase the capacity simply by adding more machines.

  • Asynchronous schema changes
    Evolve TiDB schemas as your requirement evolves. You can add new columns and indices without stopping or affecting the on-going operations.

  • Consistent distributed transactions
    Think TiDB as a single-machine RDBMS. You can start a transaction that crosses multiple machines without worrying about consistency. TiDB makes your application code simple and robust.

  • Compatible with MySQL protocol
    Use TiDB as MySQL. You can replace MySQL with TiDB to power your application without changing a single line of code in most cases.

  • Written in Go
    Enjoy TiDB as much as we love Go. We believe Go code is both easy and enjoyable to work with. Go makes us improve TiDB fast and makes it easy to dive into the codebase.

  • NewSQL over HBase
    Turn HBase into NewSQL database

  • Multiple storage engine support
    Power TiDB with your most favorite engines. TiDB supports many popular storage engines in single-machine mode. You can choose from GolevelDB, LevelDB, RocksDB, LMDB, BoltDB and even more to come.

Status

TiDB is at its early age and under heavy development, all of the features mentioned above are fully implemented.

Please do not use it in production.

Roadmap

Read the Roadmap.

Quick start

Read the Quick Start

Architecture

architecture

Contributing

Contributions are welcomed and greatly appreciated. See CONTRIBUTING.md for details on submitting patches and the contribution workflow.

Follow us

Twitter: @PingCAP

License

TiDB is under the Apache 2.0 license. See the LICENSE file for details.

Acknowledgments