OData服务一段时间未使用后唤醒缓慢
我创建了一个 Odata 服务,用于我的 iPad 应用程序与 SQL Server 数据库进行通信。问题是每天早上第一次访问 odata 服务器(晚上没有人使用它)需要很长时间才能连接。一旦第一个连接建立,此后所有连接都会立即完成。
有谁知道我需要做什么来阻止这种情况发生?如果需要,我不介意延长应用程序池的超时。
谢谢
I have created an Odata service that i use for my IPad application to talk to an SQL Server database. The problem is the first time the odata server is accessed every morning (with no-one using it over night) it takes along time to connect. Once the first connection is connected than all connections are instant after that.
Does anyone know what i need to do to stop this from happening? I dont mind extending the timeout of an app pool if needed.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
两个选项
1) 只需偶尔拨打电话(每 5 分钟左右)即可保持应用程序处于活动状态。我通常只是编写一个快速的 vbs 或 js 文件来进行此调用并安排任务
或(可能更干净,但还没有这样做)
2) 请参阅 ScottGu 的 4.0 方法 此处
Two options
1) Keep app alive simply by making occasional calls (Every 5 mins or so). I generally just write a quick vbs or js file to make this call and schedule a task
or (probably cleaner, but haven't done this yet)
2) See ScottGu's 4.0 approach here