文件系统查询
有没有一种简单的方法来查询文件系统中的数据? 我们将数据存储在文件系统(而不是数据库)中 有没有办法查询文件系统的内容? 文件系统中的数据以xml格式存储。 由于数据日益增长,我们发现很难查询文件系统中的文件内容。 谁能建议查询现有文件系统中的数据的工具/方法是什么?
Is there an easy way to query data in file system?
We are storing data in File system (instead of database)
Is there a way to query the content of the file system?
The data in the file system is stored in xml format.
since the data is growing day by day we are finding it difficult to query the content of the files in the file system.
Can anyone suggest what could be the tool/method to query the data in the existing file system?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,您可以编写一个应用程序来提供查询接口,解析查询,然后通过文件系统进行搜索。
但是看到数据库非常适合这种事情,为什么不迁移到数据库呢。您可以使用/编写 FileWatcher 在数据写入文件系统时将数据加载到数据库中(这样您就不必更改创建文件的系统),并使您的工作变得更加轻松。
?
Of course you can write an application to provide a query interface, parse the query and then go and search through the file system.
But seeing that a database is perfect for this kind of thing, why don't you migrate to a database. You can use/write a FileWatcher to load the data into a database as it's written to the file system (so you don't have to change the system that's creating the files), and make your job a whole lot easier.
?