Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rainnny7/redisexporter
This application makes it possible to export and import specific databases in a Redis server, this is useful for things such as moving databases from one index to another, or simply just exporting a single database and not an entire server.
https://github.com/rainnny7/redisexporter
Last synced: about 1 month ago
JSON representation
This application makes it possible to export and import specific databases in a Redis server, this is useful for things such as moving databases from one index to another, or simply just exporting a single database and not an entire server.
- Host: GitHub
- URL: https://github.com/rainnny7/redisexporter
- Owner: Rainnny7
- Created: 2022-01-30T16:49:21.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-27T20:45:37.000Z (almost 2 years ago)
- Last Synced: 2023-03-08T19:52:35.573Z (almost 2 years ago)
- Language: Java
- Homepage:
- Size: 54.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RedisExporter
This application makes it possible to export and import specific databases in a Redis server, this is useful for things such as moving databases from one index to another, or simply just exporting a single database and not an entire server.### Usage
```bash
$ java -jar RedisExporter.jar
```
#### Available Flags
```bash
$ java -jar RedisExporter.jar --helpOption Description
------ -----------
-?, -h, --help Show the help message
--confirm Whether to confirm the import
--export Whether to export or import the database (default: true)
--file The data file (default: data.json)
--flush Whether to flush the database prior to importing
--host The host to connect to (default: localhost)
--index The database index to use during connection (default: 0)
--password The password to use during connection
--port The port to connect to (default: 6379)
```