Neo4j - Commercial Server

Standalone Commercial Neo4j server application.

Лицензия

Лицензия

Neo4j Commercial license
Категории

Категории

Neo4J Данные Базы данных
Группа

Группа

org.neo4j.app
Идентификатор

Идентификатор

neo4j-server-commercial
Последняя версия

Последняя версия

3.4.0-alpha08
Дата

Дата

Тип

Тип

jar
Описание

Описание

Neo4j - Commercial Server
Standalone Commercial Neo4j server application.
Ссылка на сайт

Ссылка на сайт

http://components.neo4j.org/neo4j-server-commercial/3.4.0-alpha08
Организация-разработчик

Организация-разработчик

The Neo4j Graph Database Project
Система контроля версий

Система контроля версий

https://github.com/neo4j/neo4j

Скачать neo4j-server-commercial

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.neo4j.app/neo4j-server-commercial/ -->
<dependency>
    <groupId>org.neo4j.app</groupId>
    <artifactId>neo4j-server-commercial</artifactId>
    <version>3.4.0-alpha08</version>
</dependency>
// https://jarcasting.com/artifacts/org.neo4j.app/neo4j-server-commercial/
implementation 'org.neo4j.app:neo4j-server-commercial:3.4.0-alpha08'
// https://jarcasting.com/artifacts/org.neo4j.app/neo4j-server-commercial/
implementation ("org.neo4j.app:neo4j-server-commercial:3.4.0-alpha08")
'org.neo4j.app:neo4j-server-commercial:jar:3.4.0-alpha08'
<dependency org="org.neo4j.app" name="neo4j-server-commercial" rev="3.4.0-alpha08">
  <artifact name="neo4j-server-commercial" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.neo4j.app', module='neo4j-server-commercial', version='3.4.0-alpha08')
)
libraryDependencies += "org.neo4j.app" % "neo4j-server-commercial" % "3.4.0-alpha08"
[org.neo4j.app/neo4j-server-commercial "3.4.0-alpha08"]

Зависимости

compile (5)

Идентификатор библиотеки Тип Версия
org.neo4j.app : neo4j-server jar 3.4.0-alpha08
org.neo4j : neo4j-enterprise jar 3.4.0-alpha08
org.neo4j : neo4j-causal-clustering-commercial jar 3.4.0-alpha08
org.neo4j : neo4j-security-enterprise jar 3.4.0-alpha08
org.neo4j.app : neo4j-server-enterprise jar 3.4.0-alpha08

provided (1)

Идентификатор библиотеки Тип Версия
com.google.code.findbugs : annotations jar 3.0.1

runtime (1)

Идентификатор библиотеки Тип Версия
org.neo4j : neo4j-shell jar 3.4.0-alpha08

test (19)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.12
commons-codec : commons-codec jar 1.11
org.hamcrest : hamcrest-core jar 1.3
org.hamcrest : hamcrest-library jar 1.3
org.mockito : mockito-core jar 2.13.0
com.google.code.gson : gson jar 2.8.2
org.neo4j : neo4j-common test-jar 3.4.0-alpha08
org.neo4j : neo4j-kernel test-jar 3.4.0-alpha08
org.neo4j : neo4j-security-enterprise test-jar 3.4.0-alpha08
org.neo4j : neo4j-io test-jar 3.4.0-alpha08
org.neo4j : neo4j-ha test-jar 3.4.0-alpha08
org.neo4j : neo4j-metrics test-jar 3.4.0-alpha08
org.neo4j : neo4j-bolt test-jar 3.4.0-alpha08
org.neo4j : neo4j-security test-jar 3.4.0-alpha08
org.neo4j : neo4j-logging test-jar 3.4.0-alpha08
org.neo4j.app : neo4j-server test-jar 3.4.0-alpha08
com.sun.jersey : jersey-client jar 1.19
org.neo4j : neo4j-com test-jar 3.4.0-alpha08
org.neo4j.app : neo4j-server-enterprise test-jar 3.4.0-alpha08

Модули Проекта

Данный проект не имеет модулей.

Neo4j: Graphs for Everyone

Neo4j is the world’s leading Graph Database. It is a high performance graph store with all the features expected of a mature and robust database, like a friendly query language and ACID transactions. The programmer works with a flexible network structure of nodes and relationships rather than static tables — yet enjoys all the benefits of enterprise-quality database. For many applications, Neo4j offers orders of magnitude performance benefits compared to relational DBs.

Learn more on the Neo4j website.

Using Neo4j

Neo4j is available both as a standalone server, or an embeddable component. You can download or try online.

Extending Neo4j

We encourage experimentation with Neo4j. You can build extensions to Neo4j, develop library or drivers atop the product, or make contributions directly to the product core. You’ll need to sign a Contributor License Agreement in order for us to accept your patches.

Dependencies

Neo4j is built using Apache Maven version 3.5.4 and a recent version of supported VM. Bash and Make are also required. Note that maven needs more memory than the standard configuration, this can be achieved with export MAVEN_OPTS="-Xmx512m".

macOS users need to have Homebrew installed.

With brew on macOS

brew install maven

Please note that we do not support building Debian packages on macOS.

With apt-get on Ubuntu

sudo apt install maven openjdk-11-jdk

On top of that, to build Debian packages and Neo4j Desktop:

apt install debhelper devscripts dos2unix dpkg make xmlstarlet
# You will need a license for install4j, which is only needed for Neo4j Desktop
curl -O https://download-keycdn.ej-technologies.com/install4j/install4j_linux_6_1_4.deb
dpkg -i install4j_linux_6_1_4.deb

Building Neo4j

Before you start running the unit and integration tests in the Neo4j Maven project on a Linux-like system, you should ensure your limit on open files is set to a reasonable value. You can test it with ulimit -n. We recommend you have a limit of at least 40K.

  • A plain mvn clean install will only build the individual jar files.

  • Test execution is, of course, part of the build.

  • In case you just want the jars, without running tests, this is for you: mvn clean install -DskipTests.

  • To build product packages, do export PATH="bin:$PATH" && make clean all in the packaging directory after building artifacts with Maven.

  • To build the documentation see the Neo4j documentation.

  • If you are running into problems building on Windows you can try building Neo4j in a Ubuntu virtual machine.

  • You may need to increase the memory available to Maven: export MAVEN_OPTS="-Xmx512m".

Running Neo4j

After running a mvn clean install, cd into packaging/standalone/target and extract the version you want, then:

bin/neo4j start

in the extracted folder to start Neo4j on localhost:7474. On Windows you want to run:

bin\neo4j start

instead.

Neo4j Desktop

Neo4j Desktop is a convenient way for developers to work with local Neo4j databases.

To install Neo4j Desktop, go to Neo4j Download Center and follow the instructions.

Licensing

Neo4j Community Edition is an open source product licensed under GPLv3.

Neo4j Enterprise Edition includes additional closed-source components not available in this repository and requires a commercial license from Neo4j or one of its affiliates.

Trademark

Neo4j’s trademark policy is available at our trademark policy page.

org.neo4j.app

Neo4j

Версии библиотеки

Версия
3.4.0-alpha08
3.4.0-alpha07
3.4.0-alpha06
3.4.0-alpha05
3.4.0-alpha04
3.4.0-alpha03
3.4.0-alpha02
3.4.0-alpha01