https://github.com/lambdazen/bitsy
Bitsy Graph Database v3
https://github.com/lambdazen/bitsy
Last synced: 29 days ago
JSON representation
Bitsy Graph Database v3
- Host: GitHub
- URL: https://github.com/lambdazen/bitsy
- Owner: lambdazen
- License: apache-2.0
- Created: 2017-03-16T19:54:58.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2025-10-16T00:00:53.000Z (5 months ago)
- Last Synced: 2025-12-01T20:30:20.137Z (4 months ago)
- Language: Java
- Size: 847 KB
- Stars: 143
- Watchers: 5
- Forks: 22
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-java - Bitsy
README
[](https://search.maven.org/artifact/com.lambdazen.bitsy/bitsy)
Bitsy is a small, fast, embeddable, durable in-memory graph database that is compatible with Tinkerpop3.
[The project Wiki](https://github.com/lambdazen/bitsy/wiki) is the official source of documentation. The original version of the database compatible with Tinkerpop2 is available at https://bitbucket.org/lambdazen/bitsy.
### Git branching strategy
Tags are named release-[version]. Versions start with 3.0. For e.g., release-3.0
Development happens on `master` branch.
## Building it
The project **build time requirement** is [Apache Maven](https://maven.apache.org/), at least version 3.9 and Java 21.
The project **run time requirement is Java 8**.
For quick build (runs no tests nor any other plugin like javadoc)
```
mvn clean install -Dtest=void
```
For UT-only build (will run UTs too)
```
mvn clean install
```
For full build (will run UTs and ITs)
```
mvn clean install -P run-its
```
For publishing setup, see [parent POM](https://github.com/maveniverse/parent).