Xodus VFS is a simple transactional file system implemented over Xodus Environment API. Traditional file system is not transactional, it doesn't allow to work with snapshots of data with consistency requirements defined by an application.
Xodus VFS was implemented directly for storing Lucene indices used by text search in JetBrains YouTrack. Xodus is a primary storage engine in YouTrack. Apart from snapshot isolation, it has configurable shared cache consuming constant resources (RAM, file handles, etc.) regardless of the number of opened environments (database instances) in single JVM. In YouTrack, Lucene is configured to consume as little resources as possible delegating all caching and performance tuning to Xodus. Xodus has out-of-the-box stream ciphering, so if XodusDirectory
is used one can easily encrypt Lucene indices to satisfy GDPR or any other similar regulation. Finally, Xodus has probably more facilities to recover (compared to default Lucene backend) after a system/hardware failure without index corruption and the necessity to rebuild it, as its log-structured architecture allows to rollback to a recent valid snapshot. Probably - since there are no strong evidences of that.