Mashiane Expert Licensed User Longtime User Jun 28, 2022 #1 Hi there I was just reading that Redis can be used as backend database, so originally Im curios. Any thoughts around use cases on this? Thank you so much Mashy
Hi there I was just reading that Redis can be used as backend database, so originally Im curios. Any thoughts around use cases on this? Thank you so much Mashy
DonManfred Expert Licensed User Longtime User Jun 28, 2022 #2 If there is a jdbc-driver for this database it can be used i guess Upvote 0
MicroDrie Well-Known Member Licensed User Longtime User Jun 30, 2022 #3 Mashiane said: I was just reading that Redis can be used as backend database, so originally Im curios. Click to expand... Redis is a Command Line Interface JSON based non-persist in-memory database with a lot of clients. Mashiane said: Any thoughts around use cases on this? Click to expand... It depends on what you want to achieve. Redis on top of a database can also be used to speed up the response of that database. You can also use Redis to create a quick in-memory persist database, either way you will need to program the interface. Upvote 0
Mashiane said: I was just reading that Redis can be used as backend database, so originally Im curios. Click to expand... Redis is a Command Line Interface JSON based non-persist in-memory database with a lot of clients. Mashiane said: Any thoughts around use cases on this? Click to expand... It depends on what you want to achieve. Redis on top of a database can also be used to speed up the response of that database. You can also use Redis to create a quick in-memory persist database, either way you will need to program the interface.
EnriqueGonzalez Expert Licensed User Longtime User Jun 30, 2022 #4 Hi mashiene, you will need to wrap a library for that. Th best i have used Lettuce Reference Guide lettuce.io But there are others with simpler code Upvote 0
Hi mashiene, you will need to wrap a library for that. Th best i have used Lettuce Reference Guide lettuce.io But there are others with simpler code
aeric Expert Licensed User Longtime User Jun 30, 2022 #5 EnriqueGonzalez said: Hi mashiene, you will need to wrap a library for that. Th best i have used Lettuce Reference Guide lettuce.io But there are others with simpler code Click to expand... After trying to resolve all the dependencies, I think I get it work in B4J. Will post an example soon. Upvote 0
EnriqueGonzalez said: Hi mashiene, you will need to wrap a library for that. Th best i have used Lettuce Reference Guide lettuce.io But there are others with simpler code Click to expand... After trying to resolve all the dependencies, I think I get it work in B4J. Will post an example soon.
aeric Expert Licensed User Longtime User Jun 30, 2022 #6 [web]Lettuce.io (working with Redis) UPDATE: https://www.b4x.com/android/forum/threads/lettuce-v2-0.144169/ 'Non-UI application (console / server application) #Region Project Attributes #CommandLineArgs: #MergeLibraries: True #End Region #AdditionalJar: lettuce-core-6.1.8.RELEASE #AdditionalJar: reactor-core-3.4.19... www.b4x.com Upvote 0
[web]Lettuce.io (working with Redis) UPDATE: https://www.b4x.com/android/forum/threads/lettuce-v2-0.144169/ 'Non-UI application (console / server application) #Region Project Attributes #CommandLineArgs: #MergeLibraries: True #End Region #AdditionalJar: lettuce-core-6.1.8.RELEASE #AdditionalJar: reactor-core-3.4.19... www.b4x.com