Skip to ContentSkip to Footer
시작 내용
- Community Home
- >
- HPE Community, Korea
- >
- HP-UX
- >
- poll() 이 무엇일까요?
HP-UX
-
- Forums
-
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
- HPE Blog, Austria, Germany & Switzerland
- Blog HPE, France
- HPE Blog, Italy
- HPE Blog, Japan
- HPE Blog, Middle East
- HPE Blog, Latin America
- HPE Blog, Russia
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
-
Blogs
-
정보
- 커뮤니티
- Welcome
- 시작하기
- 포럼 FAQ
- 랭킹 개요
- 참여규칙
- Tips and Tricks
- 접촉
- Announcements
- Email us
- Feedback
- Information Libraries
- Integrated Systems
- Networking
- Servers
- Storage
- 다른 HPE 사이트
- Support Center
- Aruba Airheads Community
- Enterprise.nxt
- HPE Dev Community
- Cloud28+ Community
- Marketplace
-
포럼
-
블로그
-
정보
-
한국어
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 친구에게 이메일 보내기
- 부적절한 컨텐트 신고
날짜: 09-06-2007 10:00 PM
날짜: 09-06-2007 10:00 PM
poll() 이 무엇일까요?
SQL : select * from v$session;
두개의 장비에서 동일 sql 문을 실행했는데
sql 실행 속도 차이가 나서 tusc 결과를 뽑았습니다.
그런데 속도가 느린 장비에서는 poll() 이 많이 발생합니다.
이와같이 발생하는 현상이 어떠할때 발생하는지와,
poll()이라는거 무엇인지 궁금합니다.
1. select 받아서 곧바로 뿌림.
16:48:42 read(0, "s e l e c t * f r o m v $ ".., 8192) ................................................ = 25
// 중략
16:48:42 write(1, "\n", 1) .................................................................................. = 1
16:48:42 write(1, "S A D D R \t\t\tS I D S ".., 47) ................................................. = 47
16:48:42 write(1, "- - - - - - - - - - - - - - - - ".., 78) ........................
......................... = 78
2. 중간에 poll system call 이 계속 있음.
16:44:31 read(0, "s e l e c t * f r o m v $ ".., 8192) ......................
.......................... = 25
//중략
16:44:31 poll(0x800003ffbfff8c9c, 1, 0) ..................................................................... = 0
16:44:31 poll(0x800003ffbfff8c9c, 1, 0) .................................................
.................... = 0
16:44:31 poll(0x800003ffbfff8c9c, 1, 0) ..................................................................... = 0
16:44:31 poll(0x800003ffbfff8c9c, 1, 0) .............................................................
........ = 0
// 중략
16:44:32 write(1, "\n", 1) .................................................................................. = 1
16:44:32 write(1, "S A D D R \t\t\tS I D S ".., 47) ..............................................
... = 47
1 응답 1
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 친구에게 이메일 보내기
- 부적절한 컨텐트 신고
날짜: 09-07-2007 10:00 PM
날짜: 09-07-2007 10:00 PM
poll() 이 무엇일까요?
특별한 답은 없고 poll에 대한 정의 입니다.
poll()
provides a general mechanism for reporting I/O conditions associated with a set of file descriptors and for waiting until one or more specified conditions becomes true. Specified conditions include the ability to read or write data without blocking, and error conditions.
poll()
provides a general mechanism for reporting I/O conditions associated with a set of file descriptors and for waiting until one or more specified conditions becomes true. Specified conditions include the ability to read or write data without blocking, and error conditions.
위에 명시된 의견은 Hewlett Packard Enterprise가 아닌 저자의 개인 의견입니다. 이 사이트를 사용하면 이용 약관에 동의하게되며 참여 규칙 .