Index: branches/wmf/1.18wmf1/includes/objectcache/MemcachedClient.php |
— | — | @@ -344,6 +344,16 @@ |
345 | 345 | return false; |
346 | 346 | } |
347 | 347 | |
| 348 | + public function lock( $key, $timeout = 0 ) { |
| 349 | + /* stub */ |
| 350 | + return true; |
| 351 | + } |
| 352 | + |
| 353 | + public function unlock( $key ) { |
| 354 | + /* stub */ |
| 355 | + return true; |
| 356 | + } |
| 357 | + |
348 | 358 | // }}} |
349 | 359 | // {{{ disconnect_all() |
350 | 360 | |