1234567891011121314151617181920212223 |
- #ifndef REDIS_H
- #define REDIS_H
- #include <stdio.h>
- #include <QString>
- #include <string.h>
- #include <stddef.h>
- #include <stdarg.h>
- #include <string.h>
- #include <assert.h>
- #include <hiredis/hiredis.h>
- //#define REDIS_HOST "127.0.0.1"
- //#define REDIS_PORT 6379
- #define REDIS_HOST "47.98.201.73"
- #define REDIS_PORT 6379
- #define AUTH "auth usky2021"
- #define DBID "select 3"
- #endif // REDIS_H
|