()
| 132 | } |
| 133 | |
| 134 | func acquireOldInput() map[string]string { |
| 135 | oldInput, ok := oldInputPool.Get().(map[string]string) |
| 136 | if !ok { |
| 137 | return make(map[string]string) |
| 138 | } |
| 139 | |
| 140 | return oldInput |
| 141 | } |
| 142 | |
| 143 | func releaseOldInput(oldInput map[string]string) { |
| 144 | if len(oldInput) > maxPoolableMapSize { |