diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-04-29 15:12:10 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-04-29 15:18:35 -0400 |
commit | cf5a674965b3d944b2747b6aeae8cfc79c26e6f4 (patch) | |
tree | 027c395f3e9aedd7ddd78f8aa7f809949be5e5c6 /docs | |
parent | 323554838d3c07c3bf47ce9ae72fd870c6614e33 (diff) | |
download | ampache-cf5a674965b3d944b2747b6aeae8cfc79c26e6f4.tar.gz ampache-cf5a674965b3d944b2747b6aeae8cfc79c26e6f4.tar.bz2 ampache-cf5a674965b3d944b2747b6aeae8cfc79c26e6f4.zip |
Update the stream_playlist table to use MyISAM
InnoDB's performance is unacceptable out of the box, and there's no
clean way to batch these insertions into transactions, and stuff.
Benchmarks for 1000 inserts:
InnoDB: 54.826
MyISAM: 0.091
InnoDB transaction: 0.159
Fixes GH #14
Diffstat (limited to 'docs')
-rwxr-xr-x | docs/CHANGELOG.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 4af14511..40236cd8 100755 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -3,6 +3,7 @@ CHANGELOG 3.6-FUTURE ---------- +- Improved the performance of stream playlist creation (reported by AkbarSerad) - Fixed "Pure Random" / Random URLs (reported by mafe) |