this function demostrates how to integrate photon with cpp_redis
| 113 | |
| 114 | // this function demostrates how to integrate photon with cpp_redis |
| 115 | void demo_cpp_redis() { |
| 116 | auto tcp_client = photon::integration::new_tcp_client_redis(); |
| 117 | cpp_redis::client client(tcp_client); |
| 118 | cpp_redis(client); |
| 119 | delete tcp_client; |
| 120 | } |
| 121 | |
| 122 | // this function demostrates how to integrate photon with redis_cpp |
| 123 | void demo_redis_cpp() { |