如何改善基于 Restlet 的应用程序中的通信时间?
我们有一个 Swing UI,它是一个 Restlet 客户端。我们正在访问 LAN 上的服务,但通信时间有点长。我们在服务器端使用Tomcat 7.0和mysql。 这是基于 Restlet 的应用程序的已知问题吗? 我们如何才能加快沟通时间?
We have a swing UI that is a restlet client. We are accessing the services on the LAN, but the communication is taking a bit long. We are using Tomcat 7.0 and mysql on the server side.
Is it a known issue with restlet based applications ?
How can we speedup the communication time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 2.0 版本中,内部 HTTP 客户端并不是为了速度/生产目的而设计的,更多的是为了开发/便利目的。这在 2.1 版本中已被重新设计。
但是,在 2.0 版中,您可以将“org.restlet.ext.net.jar”放入类路径中,以从内部连接器切换到基于 HTTPUrlConnection 的更快连接器。
In version 2.0 the internal HTTP client isn't designed for speed/production purpose, more for developement/convenience purpose. This has been redesigned in version 2.1.
However, in version 2.0, you can drop "org.restlet.ext.net.jar" in your classpath to switch from the internal connector to a faster one based on HTTPUrlConnection.