oracle最大连接数是多少?
oracle 最多可以处理多少个连接?
以下是我的sql的摘要,我需要oracle的类似统计数据:
MySQL可以支持的最大连接数取决于给定平台上线程库的质量、可用的RAM量、每个连接使用了多少RAM连接、每个连接的工作负载以及所需的响应时间。 Linux 或 Solaris 通常应该能够支持 500-1000 个并发连接,如果您有许多 GB 的可用 RAM 并且每个连接的工作负载较低或者响应时间目标要求不高,则可以支持多达 10,000 个连接。 Windows 限制为(打开表 × 2 + 打开连接)< 2048 由于该平台上使用的 Posix 兼容层。
How many maximum number of connections can oracle handle ?
The following is a summary for my sql, i need similar stats for oracle :
The maximum number of connections MySQL can support depends on the quality of the thread library on a given platform, the amount of RAM available, how much RAM is used for each connection, the workload from each connection, and the desired response time. Linux or Solaris should be able to support at 500–1000 simultaneous connections routinely and as many as 10,000 connections if you have many gigabytes of RAM available and the workload from each is low or the response time target undemanding. Windows is limited to (open tables × 2 + open connections) < 2048 due to the Posix compatibility layer used on that platform.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Oracle 有两种类型的连接架构:
从专用服务器到共享服务器架构的跳跃将取决于连接数量和工作负载。两者的混合是可能的(在共享架构中的专用前端 Web 应用程序中长时间运行批处理作业)。
Oracle has two types of connection architecture:
The jump from dedicated server to shared server architecture will be dictated by the number of connections and the workload. A mix of the two is possible (long running batch jobs in dedicated, front end web application in shared architecture).