Skip to content

Simple library that warms up Neo4j caches with a single REST call

Notifications You must be signed in to change notification settings

niterain/neo4j-warmup

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GraphAware Neo4j Warmup

Build Status | Downloads | Latest Release: 2.1.7.28.5

GraphAware WarmUp is a simple piece of code that warms up Neo4j caches using a single API call by accessing the entire graph using all available processors.

Getting the Software

Server Mode

When using Neo4j in the standalone server mode, you will need the GraphAware Neo4j Framework and GraphAware Neo4j WarmUp .jar files (both of which you can download here) dropped into the plugins directory of your Neo4j installation. After Neo4j restart, you will be able to use the REST API.

Embedded Mode / Java Development

Java developers that use Neo4j in embedded mode and those developing Neo4j server plugins, unmanaged extensions, GraphAware Runtime Modules, or Spring MVC Controllers can include use WarmUp as a dependency for their Java project.

Releases

Releases are synced to Maven Central repository. When using Maven for dependency management, include the following dependency in your pom.xml.

<dependencies>
    ...
    <dependency>
        <groupId>com.graphaware.neo4j</groupId>
        <artifactId>warmup</artifactId>
        <version>2.1.7.28.5</version>
    </dependency>
    ...
</dependencies>

Note on Versioning Scheme

The version number has two parts. The first four numbers indicate compatibility with Neo4j GraphAware Framework. The last number is the version of the WarmUp library. For example, version 2.1.3.15.1 is version 1 of WarmUp compatible with GraphAware Neo4j Framework 2.1.3.15.

Using GraphAware WarmUp

In server mode, issue a GET request to http://your-server-address:7474/graphaware/warmup/ to warm up the caches. In Java, use the warmUp method on the WarmUp class.

License

Copyright (c) 2014 GraphAware

GraphAware is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

About

Simple library that warms up Neo4j caches with a single REST call

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%