[EMAIL PROTECTED] a écrit : > > OK, thank you. Is it a good idea to store the uploaded files in database ?
It makes it is easier to do transactionaly consistent backups (with pgdump for instance) but it will probably increase the memory usage as AFAIK jackrabbit current PostgreSQLPersistenceManager implementation uses BYTEA SQL type instead of the LargeObject API. Thus if your Blob are lower than a couple of MBs then it's alright to store them in a SQL DB, if they are larger you might want to run some scripted scenario to test the memory usage of your server. -- Olivier _______________________________________________ ECM mailing list [email protected] http://lists.nuxeo.com/mailman/listinfo/ecm
