cancel
Showing results for 
Search instead for 
Did you mean: 

Hierarchy of Filecontentstore

olive
Champ in-the-making
Champ in-the-making
When I saw the file content store I found that its hierarchy is based on date but not the logical relationship between the contents. Could somebady explain for me why alfresco don't use file system structure to map the logical relationship between the contents? What I mean is to use directory to map "space" in alfresco and use file to map "content" in alfresco.
1 REPLY 1

kevinr
Star Contributor
Star Contributor
Alfresco stores its meta-data about files and nodes in the database. It stores the file content in a nested structure on the filesystem.

It is our belief that it is better to use the most appropriate system for the job, e.g. the database is best for storing structured row-based data, and the filesystem is best for storing lumps of binary data such as file content.

The directory structure used on the filesystem exists to help break up the (potentially huge) number of files in the system into multiple directories. Also the filesystem cannot handle some characters for names of objects that the database can - e.g. the *\/" characters will upset the filesystem if used in a filename etc. where as if we store the meta-data about the files in the database we can use any characters for object names.

Thanks,

Kevin