PostgreSQL: Documentation: 10: 1.2. Architectural Fundamentals https://www.postgresql.org/docs/10/static/tutorial-arch.html

As is typical of client/server applications, the client and the server can be on different hosts. In that case they communicate over a TCP/IP network connection. You should keep this in mind, because the files that can be accessed on a client machine might not be accessible (or might only be accessible using a different file name) on the database server machine.

The PostgreSQL server can handle multiple concurrent connections from clients. To achieve this it starts (“forks”) a new process for each connection. From that point on, the client and the new server process communicate without intervention by the original postgres process. Thus, the master server process is always running, waiting for client connections, whereas client and associated server processes come and go. (All of this is of course invisible to the user. We only mention it here for completeness.)

最新文章

  1. C语言之实现函数返回一个数组,以及选择排序,还有折半查找。这是同学的一个作业。。。
  2. java的基本程序设计之个人总结要点
  3. java中的动态代理
  4. windows2003安全加固脚本
  5. Count the Trees[HDU1131]
  6. SignalR记录
  7. hdu 2196 Computer 树的直径
  8. Asp.net MVC4 使用EF实现数据库的增删改查
  9. Jordan Lecture Note-11: 典型相关分析(Canonical Correlation Analysis, CCA).
  10. android Service简介及启动关闭方式
  11. 3.1. 修改托管对象模型(Core Data 应用程序实践指南)
  12. JAVA程序员成长历程(一)
  13. 集成direnv 与docker-compose 进行环境变量管理
  14. ①泡茶看数据结构-表ADT
  15. [C#]统计文本文件txt中的行数(快速读取)
  16. Spring各个jar包的作用
  17. 让Hibernate和触发器协同工作
  18. php 制作验证码不显示的问题
  19. mfc 虚函数
  20. Python学习(20):Python函数(4):关于函数式编程的内建函数

热门文章

  1. input弹出的手机键盘搜索事件
  2. 观察者模式在MVP中的应用
  3. PHP获取今天开始和结束的时间戳
  4. 初识mysql语句
  5. Android Q 兼容那些事
  6. 洛谷——P1825 [USACO11OPEN]玉米田迷宫Corn Maze
  7. gitlab详解
  8. Java -----transient 和static
  9. P2P技术简介(包括BT软件的分析)(转)
  10. xcode5 asset catalogs 由于图标尺寸错误导致编译问题解决[原创]