Remove cached order data
(orderId string)
| 211 | |
| 212 | // Remove cached order data |
| 213 | func removeCachedOrder(orderId string) { |
| 214 | common.RedisDel(orderId) |
| 215 | } |
| 216 | |
| 217 | // createOrUpdateOrderFromCache creates a new order from cache or updates an existing one |
| 218 | func createOrUpdateOrderFromCache(eid int64, orderId string, status int, transactionId string) (*model.Order, error) { |
no outgoing calls
no test coverage detected