What is the default location for reposatory files in SVN? And how does it store them? (plain files,some sort of database)?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There does not exist a default location for the repository. This has to be configured. Either in svnserve or via Apache configuration. Inside the repository the information stored in a compressed form in plain files with a particular structure. This is the FSFS Backend which behaves like a database with transaction and possible rollback. On the other hand there exist the BerkeleyDB backup which uses the BerkeleyDB which was the first backend. But in the meantime the FSFS backup has become to the defacto standard storage. Simpler to backup etc. Details about how the storage is working internally you can find on the web-site