|
12 | 12 | flagRESPListenAddr = flag.String("resp-addr", "localhost:6380", "the address of resp server") |
13 | 13 | flagHTTPListenAddr = flag.String("http-addr", "localhost:7090", "the address of the http server") |
14 | 14 | flagStorageDir = flag.String("storage", "./redix-data", "the storage directory") |
15 | | - flagEngine = flag.String("engine", "badger", "the storage engine to be used, available (badger)") |
| 15 | + flagEngine = flag.String("engine", "badger", "the storage engine to be used") |
16 | 16 | flagWorkers = flag.Int("workers", runtime.NumCPU(), "the default workers number") |
17 | 17 | flagVerbose = flag.Bool("verbose", false, "verbose or not") |
18 | 18 | ) |
|
84 | 84 | "badger": true, |
85 | 85 | "bolt": true, |
86 | 86 | } |
| 87 | + |
| 88 | + redixBrand = ` |
| 89 | +
|
| 90 | + _______ _______ ______ _________ |
| 91 | + ( ____ )( ____ \( __ \ \__ __/|\ /| |
| 92 | + | ( )|| ( \/| ( \ ) ) ( ( \ / ) |
| 93 | + | (____)|| (__ | | ) | | | \ (_) / |
| 94 | + | __)| __) | | | | | | ) _ ( |
| 95 | + | (\ ( | ( | | ) | | | / ( ) \ |
| 96 | + | ) \ \__| (____/\| (__/ )___) (___( / \ ) |
| 97 | + |/ \__/(_______/(______/ \_______/|/ \| |
| 98 | + |
| 99 | +
|
| 100 | +A high-concurrency standalone NoSQL datastore with the support for redis protocol |
| 101 | +and multiple backends/engines, also there is a native support for |
| 102 | +real-time apps via webhook & websockets besides the basic redis channels. |
| 103 | +
|
| 104 | + ` |
87 | 105 | ) |
0 commit comments