In our project, we use jackrabbit with spring and tomcat to manage PDF files.
Currently, the MySql database is used to store blob files (in terms of jackrabbit, which he called the BundleDbPersistenceManager).
As the number of generated files grows, we thought of using a file system instead of a database to improve performance and eliminate replication overhead. In spec , the jackrabbit command recommends using the BundleFsPersistenceManager instead, but with comments like this
Not intended for use in production environments (other than read-only use)
Does anyone have experience using BundleFsPersistenceManager and can reference any painless migration resources from blob in mysql database to files in the file system?
Thank you in advance
java jcr jackrabbit
basilboli
source share