文件系统查询

发布于 2024-08-25 17:20:47 字数 141 浏览 4 评论 0原文

有没有一种简单的方法来查询文件系统中的数据? 我们将数据存储在文件系统(而不是数据库)中 有没有办法查询文件系统的内容? 文件系统中的数据以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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天煞孤星 2024-09-01 17:20:47

当然,您可以编写一个应用程序来提供查询接口,解析查询,然后通过文件系统进行搜索。

但是看到数据库非常适合这种事情,为什么不迁移到数据库呢。您可以使用/编写 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.

?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文