Hi Aleks,
- XSD validation, currently BaseX does not provide any good way to perform XSD validation and all writes are always flushed to the disk. This will potentially can cause a problem, because incorrect changes can break consistency of the database. In addition to this it's a bit heavy to keep complete xml in the memory just for the purpose of validation due to the fact that database can grow to a large size.
It's true we don't offer schema validation, so documents won't be automatically revalidated after updates. I.e., the application must guarantee that updates won't violate the schema.
- Currently all writes to database only reflect in internal BaseX file system, the changes does not apply to XML file right away, unless you specifically copy it over, is there are a good way where you can force BaseX also update xml file with the changes.
Currently, this has to be done by explicitly calling the fn:put() function or using the export command. But let me think.. We could add a new database flag to automatically write changes back to the original files. This flag could be switched on by default. Just tell me if this would be helpful in your context (note, however, that we'll have to check this solution for potential side effects).
Hope this helps, Christian