Create SimpleFile only when writing the content
instead of first creating an empty file and then writing the content.
This solves the overhead of creating an empty file with the common pattern:
```php
$file = $simpleFilder->newFile('foo.txt');
$file->putContent('bar.txt');
```
roughly halving the number of storage and database operations that need to be done when creating a `SimpleFile`.
This is not automatically done with `File` because that has a more complex api which I'm more hesitant to touch.
Instead the `Folder::newFile` api has been extended to accept the content for the new file.
In my local testing, the overhead of first creating an empty file took about 20% of the time for preview generation
Signed-off-by:
Robin Appelman <robin@icewind.nl>
Showing
- lib/private/Files/Node/Folder.php 8 additions, 2 deletionslib/private/Files/Node/Folder.php
- lib/private/Files/Node/LazyRoot.php 1 addition, 1 deletionlib/private/Files/Node/LazyRoot.php
- lib/private/Files/Node/NonExistingFolder.php 1 addition, 1 deletionlib/private/Files/Node/NonExistingFolder.php
- lib/private/Files/SimpleFS/NewSimpleFile.php 221 additions, 0 deletionslib/private/Files/SimpleFS/NewSimpleFile.php
- lib/private/Files/SimpleFS/SimpleFolder.php 2 additions, 3 deletionslib/private/Files/SimpleFS/SimpleFolder.php
- lib/public/Files/Folder.php 2 additions, 1 deletionlib/public/Files/Folder.php
Loading
Please register or sign in to comment