forked from liquigraph/liquigraph.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (87 loc) · 4.34 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<link href='https://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'/>
<link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen"/>
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print"/>
<link rel="stylesheet" type="text/css" href="stylesheets/highlight.css" media="screen"/>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen"/>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>Liquigraph: Graph Database Refactoring</title>
</head>
<body>
<div id="container">
<div class="inner">
<header>
<h1 id="headline"><a href=""><img src="images/liquigraph-logo.png" alt="Liquigraph" id="logo" title="Liquigraph: graph migrations made easy" /></a></h1>
</header>
<section id="downloads" class="clearfix">
<a href="https://github.com/liquigraph/liquigraph" id="view-on-github" class="button"><span>View on GitHub</span></a>
</section>
<hr/>
<section>
<h1>Liquigraph is a database refactoring tool</h1>
<p>It helps you maintain your <a href="https://neo4j.com/">Neo4j</a> database state by defining and executing migrations in a variety of ways.
This project is heavily inspired from <a href="http://www.liquibase.org/">Liquibase</a>.
</p>
</section>
<hr/>
<section>
<h2>What version should I use? <a class="tldr" href="#versioning">tl;dr</a></h2>
<p>Liquigraph started when the first versions of Neo4j 2.0 were released. The project was still going towards 1.0 and release candidates were pushed.
Time has passed, several major versions have been released and a new JDBC driver, for Neo4j 3.x, has been designed. This new JDBC driver is not feature-complete yet and cannot replace entirely the legacy JDBC driver (see <a href="https://github.com/liquigraph/neo4j-jdbc-2x#legacy-vs-current-neo4j-jdbc-driver-matrix">this usecase matrix</a> for more details).
</p>
<p>See in the <a href="#versioning">table below</a> to pick the right Liquigraph version for your usecase.</p>
<hr />
<table id="versioning">
<caption>Version matrix</caption>
<thead>
<th>Liquigraph version</th>
<th>Neo4j version</th>
<th>Underlying JDBC driver</th>
<th>Supported connection modes</th>
</thead>
<tr>
<td>1.x</td>
<td colspan="3"><em>discontinued</em></td>
</tr>
<tr>
<td>2.x</td>
<td>2.x</td>
<td><a href="https://github.com/liquigraph/neo4j-jdbc-2x">Legacy JDBC Driver (fork)</a></td>
<td>Embedded (2.x), HTTP (2.x)</td>
</tr>
<tr>
<td>3.x</td>
<td>3.x</td>
<td><a href="https://github.com/neo4j-contrib/neo4j-jdbc">Official JDBC Driver</a></td>
<td>HTTP (3.x), Bolt (3.x)</td>
</tr>
<tr>
<td>4.x</td>
<td>4.x</td>
<td><a href="https://github.com/neo4j-contrib/neo4j-jdbc">Official JDBC Driver</a></td>
<td>HTTP (4.x), Bolt (4.x)</td>
</tr>
</table>
</section>
<div id="versions">
<hr />
<h2>Detailed documentation</h2>
<ul>
<li><a href="./1.0-RC1/index.html">1.0-RC1</a></li>
<li><a href="./1.0-RC2/index.html">1.0-RC2</a></li>
<li><a href="./1.0-RC3/index.html">1.0-RC3</a></li>
<li><a href="./2.x/index.html">2.x</a></li>
<li><a href="./3.x/index.html">3.x</a></li>
<li><a href="./4.x/index.html">4.x</a></li>
</ul>
<footer><p>Liquigraph is maintained by <a href="https://github.com/fbiville">Florent Biville</a> and several <a href="https://github.com/liquigraph/liquigraph/graphs/contributors">others</a> · Tactile theme by <a href="https://twitter.com/jasonlong">Jason Long</a>.</p></footer>
</div>
</div>
</div>
</body>
</html>