From 931ae8724301b9775f39dfbed60594fbf4163bef Mon Sep 17 00:00:00 2001 From: Fabian <5229597+NivixX@users.noreply.github.com> Date: Tue, 22 Oct 2024 19:31:55 +0900 Subject: [PATCH 1/2] Update readme.md --- readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readme.md b/readme.md index 658b611..06893a2 100644 --- a/readme.md +++ b/readme.md @@ -21,6 +21,8 @@ NDatabase can support java 8 from 18 and higher and all minecraft server version [**NDatabase WIKI**](https://github.com/NivixX/NDatabase/wiki) - [Spigot page](https://www.spigotmc.org/resources/ndatabase-fast-data-model-creation-powerful-async-sync-api.107793/) +I used NDatabase in my own server that could handle 500 concurrent players, check more technical details [in this repo](https://github.com/NivixX/BloodyBattle) + ## Benefits of using NDatabase * **Fast to use, you don't have to write any Repository class or write SQL:** this framework is designed in a way that you just have to create your data model object (DTO) and a fully usable repository will be created automatically. See [NDatabase Installation & Quickstart](https://github.com/NivixX/NDatabase/wiki/C.-Installation-&-Quickstart-in-5-minutes) * **Install once, use it everywhere:** It's obvious that a server always have a lot of plugins, most of them require a database, and you need to re-implement, and configure your database for every plugin. Connection pool duplication cost a lot of resources. With NDatabase, you just install the plugin once, and you can use the API in every plugins without configuration needed. From 6cc49bf2697a636e1c546ae1bbfb6067b7987ab4 Mon Sep 17 00:00:00 2001 From: Fabian <5229597+NivixX@users.noreply.github.com> Date: Tue, 22 Oct 2024 19:32:51 +0900 Subject: [PATCH 2/2] Update readme.md --- readme.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 06893a2..c930eba 100644 --- a/readme.md +++ b/readme.md @@ -8,7 +8,6 @@ Stars jitpack License - Visitor count

# NDatabase @@ -21,7 +20,7 @@ NDatabase can support java 8 from 18 and higher and all minecraft server version [**NDatabase WIKI**](https://github.com/NivixX/NDatabase/wiki) - [Spigot page](https://www.spigotmc.org/resources/ndatabase-fast-data-model-creation-powerful-async-sync-api.107793/) -I used NDatabase in my own server that could handle 500 concurrent players, check more technical details [in this repo](https://github.com/NivixX/BloodyBattle) +I used NDatabase in my own server that could handle 500 concurrent players, you can have more interesting technical details [in this repo](https://github.com/NivixX/BloodyBattle) ## Benefits of using NDatabase * **Fast to use, you don't have to write any Repository class or write SQL:** this framework is designed in a way that you just have to create your data model object (DTO) and a fully usable repository will be created automatically. See [NDatabase Installation & Quickstart](https://github.com/NivixX/NDatabase/wiki/C.-Installation-&-Quickstart-in-5-minutes)