iOS 应用程序中是否可以使用类似 MacFUSE 的功能?

发布于 2024-11-03 19:00:19 字数 160 浏览 2 评论 0原文

我想在 iOS 应用程序中拥有虚拟文件,因此我可以使用 [NSData dataWithContentsOfURL:] 来拥有一个我没有的大表的 NSData (以及最终指向字节的指针)想要存储在磁盘上,而是在需要时计算部分内容。

欢迎任何其他方法来解决这个问题!

I'd like to have virtual files in an iOS app, so I can use [NSData dataWithContentsOfURL:] to have a NSData (and a pointer to the bytes eventually) of a large table that I do not want to store on disk, but rather compute parts of when needed.

Any other approach to solving this problem is welcome!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

瑶笙 2024-11-10 19:00:19

我建议您不要将与“大”表的连接视为持久连接,而应将其视为可查询的服务。

我建议使用 REST 之类的东西,并且您的 iOS 应用程序会查询 REST 服务。

从长远来看,很多事情都变得非常灵活。

还允许您将大量逻辑集中在服务器端,这意味着您可以使用缓存技术来提高性能,这是您的 iOS 应用程序必须做的。

I would recommend rather than thinking of the connection to your "large" table as a persistent one, you should think of it as a queryable service.

I recommend the use of something like REST, and your iOS app queries the REST service.

In the long run makes lots of things really flexible.

Also allows you to centralise a lot of the logic on the server side, this means you can use caching techniques to improve performance, something your iOS app would have had to do.

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