Go to file
bookug 3bdc0d4d92 feat: add boost installation to setup for CentOS 2018-09-14 16:44:57 +08:00
.debug add insertion and deletion;move new version here 2016-09-16 16:56:18 +08:00
.objs add insertion and deletion;move new version here 2016-09-16 16:56:18 +08:00
.tmp style: add .tmp/web 2017-07-31 12:22:20 +08:00
COVERAGE fix bugs in gclient 2017-02-08 16:29:53 +08:00
Database feat: add boost installation to setup for CentOS 2018-09-14 16:44:57 +08:00
KVstore feat: merge qinzongyue branch and forbid trie; 2018-09-06 14:43:02 +08:00
Main docs: remove string buffer from system; 2018-09-11 20:53:39 +08:00
Parser Fix: add files forgotten to commit last times 2018-01-22 21:36:03 +08:00
Query fix: forbid string buffer from string index 2018-09-07 13:40:22 +08:00
Server feat: allow modify in endpoint 2018-09-04 20:47:52 +08:00
Signature refactor: release 0.5.0 2017-08-07 13:39:34 +08:00
StringIndex feat: add boost installation to setup for CentOS 2018-09-14 16:44:57 +08:00
Trie feat: forbid trie 2018-09-13 21:02:43 +08:00
Util feat: forbidden the openmp sort to speed up; 2018-04-24 16:45:35 +08:00
VSTree feat: forbidden the openmp sort to speed up; 2018-04-24 16:45:35 +08:00
api docs: adjust lib dependecny in c++ api 2018-09-06 15:08:37 +08:00
bin add insertion and deletion;move new version here 2016-09-16 16:56:18 +08:00
data style: add datasets 2017-11-16 16:27:52 +08:00
docs docs: add missing files 2018-09-11 16:02:55 +08:00
garbage docs: setup and ghttp 2018-09-11 01:43:35 +08:00
lib add insertion and deletion;move new version here 2016-09-16 16:56:18 +08:00
logs docs: add README in logs/endpoint; 2017-07-25 23:22:04 +08:00
scripts feat: add boost installation to setup for CentOS 2018-09-14 16:44:57 +08:00
tools version 0.4.0 2017-01-16 14:12:57 +08:00
.gitignore feat: add php and python api for python; 2018-08-08 13:33:17 +08:00
Dockerfile docs: update Dockerfile 2018-06-23 16:07:05 +08:00
LICENSE add LICENSE for branch master 2017-03-23 13:33:53 +08:00
NOTES.md refactor: release 0.5.0 2017-08-07 13:39:34 +08:00
README.md docs: setup and ghttp 2018-09-11 01:43:35 +08:00
TODO feat: add TODO for yangchaofan 2018-06-12 15:05:16 +08:00
init.conf refactor: fix ghttp and add function 2017-07-29 12:00:51 +08:00
makefile feat: add boost installation to setup for CentOS 2018-09-14 16:44:57 +08:00
package.json refactor: move id_tuples to disk in build 2017-03-29 13:48:39 +08:00
path add:multi_users&multi_databases 2018-01-19 15:38:58 +08:00

README.md

Gstore System

Gstore System(also called gStore) is a graph database engine for managing large graph-structured data, which is open-source and targets at Linux operation systems. The whole project is written in C++, with the help of some libraries such as readline, antlr, and so on. Only source tarballs are provided currently, which means you have to compile the source code if you want to use our system.

The formal help document is in English(EN) and 中文(ZH).

The formal experiment result is in Experiment.

We have built an IRC channel named #gStore on freenode, and you can visit the homepage of gStore.

Getting Started

Compile from Source

This system is really user-friendly and you can pick it up in several minutes. Remember to check your platform where you want to run this system by viewing System Requirements. After all are verified, please get this project's source code. There are several ways to do this:

  • download the zip from this repository and extract it

  • fork this repository in your github account

  • type git clone https://github.com/Caesar11/gStore.git in your terminal or use git GUI to acquire it

Then you need to compile the project, just type make in the gStore root directory, then all executables will be generated.

Deploy via Docker

You can easily deploy gStore via Docker. We provide both of Dockerfile and docker image. Please see our Docker Deployment Doc(EN) or Docker部署文档(中文) for details.

Run

To run gStore, please type bin/gbuild database_name dataset_path to build a database named by yourself. And you can use bin/gquery database_name command to query an existing database. What is more, bin/ghttp is a wonderful tool designed for you, as a database server which can be accessed via HTTP protocol. Notice that all commands should be typed in the root directory of gStore, and your database name should not end with ".db".


Advanced Help

If you want to understand the details of the gStore system, or you want to try some advanced operations(for example, using the API, server/client), please see the chapters below.


Other Business

We have written a series of short essays addressing recurring challenges in using gStore to realize applications, which are placed in Recipe Book.

You are welcome to report any advice or errors in the github Issues part of this repository, if not requiring in-time reply. However, if you want to urgent on us to deal with your reports, please email to bookug@qq.com to submit your suggestions and report bugs to us by emailing to gStoreDB@gmail.com. A full list of our whole team is in Mailing List.

There are some restrictions when you use the current gStore project, you can see them on Limit Description.

Sometimes you may find some strange phenomena(but not wrong case), or something hard to understand/solve(don't know how to do next), then do not hesitate to visit the Frequently Asked Questions page.

Graph database engine is a new area and we are still trying to go further. Things we plan to do next is in Future Plan chapter, and we hope more and more people will support or even join us. You can support in many ways:

  • watch/star our project

  • fork this repository and submit pull requests to us

  • download and use this system, report bugs or suggestions

  • ...

People who inspire us or contribute to this project will be listed in the Thanks List chapter.