(oldInput map[string]string)
| 141 | } |
| 142 | |
| 143 | func releaseOldInput(oldInput map[string]string) { |
| 144 | if len(oldInput) > maxPoolableMapSize { |
| 145 | return |
| 146 | } |
| 147 | |
| 148 | clear(oldInput) |
| 149 | oldInputPool.Put(oldInput) |
| 150 | } |
| 151 | |
| 152 | // Status sets the status code of redirection. |
| 153 | // If status is not specified, status defaults to 303 See Other. |