| Index: trunk/phase3/includes/filerepo/backend/SwiftFileBackend.php |
| — | — | @@ -24,7 +24,7 @@ |
| 25 | 25 | protected $auth; // Swift authentication handler |
| 26 | 26 | protected $authTTL; // integer seconds |
| 27 | 27 | protected $swiftAnonUser; // string; username to handle unauthenticated requests |
| 28 | | - protected $maxContCacheSize = 20; // integer; max containers with entries |
| | 28 | + protected $maxContCacheSize = 100; // integer; max containers with entries |
| 29 | 29 | |
| 30 | 30 | /** @var CF_Connection */ |
| 31 | 31 | protected $conn; // Swift connection handle |
| — | — | @@ -854,7 +854,7 @@ |
| 855 | 855 | if ( !$this->valid() && count( $this->bufferIter ) ) { |
| 856 | 856 | $this->bufferAfter = end( $this->bufferIter ); |
| 857 | 857 | $this->bufferIter = $this->backend->getFileListPageInternal( |
| 858 | | - $this->container, $this->dir, $this->bufferAfter, self::PAGE_SIZE |
| | 858 | + $this->container, $this->dir, $this->bufferAfter, self::PAGE_SIZE |
| 859 | 859 | ); |
| 860 | 860 | } |
| 861 | 861 | } |
| — | — | @@ -863,7 +863,7 @@ |
| 864 | 864 | $this->pos = 0; |
| 865 | 865 | $this->bufferAfter = null; |
| 866 | 866 | $this->bufferIter = $this->backend->getFileListPageInternal( |
| 867 | | - $this->container, $this->dir, $this->bufferAfter, self::PAGE_SIZE |
| | 867 | + $this->container, $this->dir, $this->bufferAfter, self::PAGE_SIZE |
| 868 | 868 | ); |
| 869 | 869 | } |
| 870 | 870 | |