<- Back to NucleoCore
Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

23 total results found

NucleoCore

NucleoEvent

NucleoDB

NucleoDB-Memcached

memcached server using nucleodb as a datastore

Spring Data Repository Library

NucleoDB

Models

NucleoDB

MQS

NucleoDB

Locks

NucleoDB

Description

NucleoDB

NucleoDB is an in-memory, embedded database system designed to provide high-speed data management and processing. Its in-memory architecture ensures rapid access and manipulation of data, making it ideal for applications where performance and quick respons...

Quickstart

NucleoDB

Add dependencies to build.gradle repositories { mavenCentral() maven { url 'https://repo.spring.io/milestone' } maven { url 'https://repo.spring.io/snapshot' } maven { url "https://nexus.synload.com/repository/maven-repo-releases/" } } dependenc...

Indexing

NucleoDB Models

Currently there are 2 index types, Tree and Trie. Trie Index Supported value types: String Heavy memory usage and allows for partial text search. @Index(type = TrieIndex.class) Tree Index (Default) Support value types: Numbers, String, Dates Lower mem...

Table Class

NucleoDB Models

@Table(tableName = "author", dataEntryClass = AuthorDE.class) public class Author implements Serializable { private static final long serialVersionUID = 1; @Index() String name; public Author() {} public Author(String name) { t...

DataEntry Class

NucleoDB Models

Data Entry class encloses the table class. This is to differentiate the meta data from the actual data of the table. Only the table class can have indexed member variables. Author class public class AuthorDE extends DataEntry<Author>{ public AuthorDE(Auth...

Getting Started

NucleoDB Spring Data Repository Library

NucleoDB Spring Repository Library makes it easier to use NucleoDB. Installation Dependencies Kafka Cluster /docker/kafka/docker-compose.yml Import library repositories { mavenCentral() maven { url "https://nexus.synload.com/reposit...

Connection

NucleoDB Models

@Conn("AUTHORED") public class AuthoredConnection extends Connection<BookDE, AuthorDE>{ public AuthoredConnection() { } public AuthoredConnection(AuthorDE from, BookDE to) { super(from, to); } public AuthoredConnection(AuthorDE from, B...

Connection Repository

NucleoDB Spring Data Repository Library

Connection repository integrates with the spring data repository. This enables your application to lookup based on either the destiny or the originating DataEntry. Definition @Repository public interface AuthoredConnectionRepository extends NDBConnRepos...

Data Repository

NucleoDB Spring Data Repository Library

Simplifies the retrieval and saving of data entries into the NucleoDB database.  Definition @Repository public interface AuthorDataRepository extends NDBDataRepository<AuthorDE, String>{ Optional<AuthorDE> findByNameAndKey(String name, String key); Op...

Message Queue Service

NucleoDB MQS

Setting MQS In the configuration for the table you can set the MQS type on initiating the database. config.setMqsConfiguration(new LocalConfiguration()) This can be done using the configuration customizer NucleoDB nucleoDB = new NucleoDB( NucleoDB.DBT...

Requirements

NucleoDB

At the moment the database only has compatibility with Kafka.  Kafka Cluster You can run a development cluster using docker and docker-compose using the following file.  https://github.com/NucleoTeam/NucleoDB-Spring/blob/main/docker/kafka/docker-compose.y...

Installation and Startup

NucleoDB-Memcached

Installing Requirements Docker Kafka Cluster Configuration Environment Variables KAFKA_SERVERS=kafka:29092 Source https://github.com/NucleoTeam/NucleoDB-Memcached Docker Image Package Repository https://github.com/NucleoTeam/NucleoDB-Memcached/p...

EventListener

NucleoDB Spring Data Repository Library

Data Entry Code Sample @RestController public class BookController{ @EventListener public void bookCreatedEvent(DataEntryCreatedEvent<BookDE> bookCreated){ Serializer.log("Book created "+bookCreated.getDataEntry().getData().getName()); } } E...

Source Code

NucleoDB

The source code can be found on Github here https://github.com/NucleoTeam/NucleoDB

Cluster Locks

NucleoDB Locks

Cluster wide DataEntry locks. You can lock a DataEntry by specifying in the copy step that you want to lock the entry. This will send a request to lock the entry to all of the running instances of NucleoDB until that entry has been saved ( Or a timeout of 1 s...