Oracle ASP.net 提供程序模型对象性能
ODP.Net 的 Oracle 11g 版本引入了提供程序模型对象(会话状态提供程序、身份提供程序等),它允许应用程序将这些信息存储在 Oracle DB 中,而无需编写自定义提供程序实现。
有人对这些对象做过性能基准测试吗? 它们的性能与 .net 提供的 sql server 实现相比如何? 我对会话状态提供程序的性能特别感兴趣。
Oracle 11g version of ODP.Net introduces the provider model objects (session state provider, identity provider etc) which lets the application to store these information in an oracle DB without writing custom provider implementation.
Has anyone has done any performance benchmarking on these objects? how do they compare in performance to the sql server implementations provided with .net? I am particularly interested in the performance of the sessionstate provider.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您下载一份 Reflector 并比较 SQL Server 和 Oracle 提供程序的代码库(它们不应该那么复杂。)
我猜测它们看起来几乎相同并且执行(从.NET 运行时视角)类似。
Oracle 后端是否更快……那是另一回事了。
I would recommend you download a copy of Reflector and compare the codebases for the SQL Server and Oracle providers (They shouldn't be that complicated.)
I'm going to guess that they're going to look almost identical and perform (from a .NET runtime perspective) similarly.
Whether the Oracle backend is any faster...that's another story.