imthebest
Well-known member
Hi,
When Xen Media Gallery wasn't part of XenForo this was somehow understandable but now that XFMG is part of XenForo I think this is totally unacceptable.
XFMG stores all the thumbnails that display inside the gallery within data/xengallery. The problem is that XenForo *stores another exact copy of every thumbnail* at data/attachments. This is a big problem for large galleries:
So I'm storing 40,219 files which makes a total of 2.6GB for nothing. This gets even worst when it comes to backups because you're complicating the process and making it more resource intensive.
Again, this is unacceptable and should be addressed in the near future.
Thanks,
Super120
When Xen Media Gallery wasn't part of XenForo this was somehow understandable but now that XFMG is part of XenForo I think this is totally unacceptable.
XFMG stores all the thumbnails that display inside the gallery within data/xengallery. The problem is that XenForo *stores another exact copy of every thumbnail* at data/attachments. This is a big problem for large galleries:
Code:
#du -h data/xengallery
2.6GB xengallery
#find data/xengallery -type f | wc -l
41,052 files
#du -h data/attachments
2.6GB attachments
#find data/attachments -type f | wc -l
40,219 files
Again, this is unacceptable and should be addressed in the near future.
Thanks,
Super120
Upvote
1