Browse Definitions :
Definition

polling (computing)

What is polling (computing)?

In computer science, polling or a polled operation denotes the process of repeatedly sampling the status of external devices by a client program. The term polling is often used when describing input/output and referred to as software-driven I/O or polled I/O. This process can occur thousands of times a second.

Specifically, in multipoint or multidrop communication, the controlling device -- with multiple devices attached that share the same line -- sends a message to each device, one at a time, asking each whether it has anything to communicate, i.e., whether it wants to use the line.

polling vs. webhook
While the polling process sends multiple queries, a webhook only sends a message when an event occurs using HTTP POST messages to initiate action in another program when an event occurs.

What is polling in programming?

Polling is ubiquitous across computer science wherever one program waits on another for a response. For example, process A in a program may ask process C, "Do you have anything I can do?" repeatedly until it gets an answer.

Polling activity can range from a low level, such as polling the status of a wire looking for a change of voltage, to a high level as in the case of one server sending a web request to another server for information about an item.

Polling is relatively easy to implement and can be especially effective. In Unix-like systems, users may use poll() instead of select(). While the functions provide similar functionality, they differ significantly in how they handle events. For example, if the user is polling for input, then poll() returns immediately after calling the function, whereas select() waits until an event occurs before returning.

basic Unix commands
In Unix-like systems, users may perform polling using the poll() command instead of the select() command.

What are the different types of polling?

There are three main polling types:

  1. Polling cycle. A polling cycle is an interval during which each element is checked. The optimal polling cycle depends on several factors, such as the desired response speed, polling overhead and number of elements being polled.
  2. Roll-call polling. In roll-call polling, the polling message is sent out to every element in the list. When one of the elements responds, the polling loop stops, and the responding element is removed from the list. Roll-call polling uses a timing mechanism to ensure that the polling does not continue indefinitely.
  3. Hub polling. Hub polling, or token polling, is a method used to poll elements in a list. Each element polls the next one in a fixed order. When an element reaches the end of the list, it begins the process again.

What is polling rate?

Polling rate refers to how frequently a device, such as a mouse or keyboard, sends data back to the computer to which it's attached. It may be measured as rate per second or hertz (Hz).

What is keyboard polling rate?

A keyboard's polling rate is the number of times per second it checks to see if any keys have been pressed. The higher the polling rate, the better the responsiveness of the keyboard.

For example, a 1 kilohertz (kHz) polling rate means that the keyboard checks every millisecond whether any keys have been pressed; a 10 kHz polling rate means that it checks once every 10 milliseconds. Generally, a polling rate between 100 Hz and 250 Hz is good for typing; for gaming, a polling rate of 500 Hz to 1,000 Hz is preferred.

keyboard polling rate
The polling rate for a keyboard is the number of times per second the keyboard checks to see if a user has pressed any keys.

What is long polling?

Long polling is a technique used to avoid repeatedly sending requests to a remote resource, such as a Hypertext Transfer Protocol server, to retrieve updated information. Rather than requesting the same information repeatedly, the request can be sent once and held until the requested information changes.

See eight tips to optimize network bandwidth and performance.

This was last updated in February 2023

Continue Reading About polling (computing)

Networking
  • local area network (LAN)

    A local area network (LAN) is a group of computers and peripheral devices that are connected together within a distinct ...

  • TCP/IP

    TCP/IP stands for Transmission Control Protocol/Internet Protocol and is a suite of communication protocols used to interconnect ...

  • firewall as a service (FWaaS)

    Firewall as a service (FWaaS), also known as a cloud firewall, is a service that provides cloud-based network traffic analysis ...

Security
  • identity management (ID management)

    Identity management (ID management) is the organizational process for ensuring individuals have the appropriate access to ...

  • single sign-on (SSO)

    Single sign-on (SSO) is a session and user authentication service that permits a user to use one set of login credentials -- for ...

  • fraud detection

    Fraud detection is a set of activities undertaken to prevent money or property from being obtained through false pretenses.

CIO
  • IT budget

    IT budget is the amount of money spent on an organization's information technology systems and services. It includes compensation...

  • project scope

    Project scope is the part of project planning that involves determining and documenting a list of specific project goals, ...

  • core competencies

    For any organization, its core competencies refer to the capabilities, knowledge, skills and resources that constitute its '...

HRSoftware
  • recruitment management system (RMS)

    A recruitment management system (RMS) is a set of tools designed to manage the employee recruiting and hiring process. It might ...

  • core HR (core human resources)

    Core HR (core human resources) is an umbrella term that refers to the basic tasks and functions of an HR department as it manages...

  • HR service delivery

    HR service delivery is a term used to explain how an organization's human resources department offers services to and interacts ...

Customer Experience
  • martech (marketing technology)

    Martech (marketing technology) refers to the integration of software tools, platforms, and applications designed to streamline ...

  • transactional marketing

    Transactional marketing is a business strategy that focuses on single, point-of-sale transactions.

  • customer profiling

    Customer profiling is the detailed and systematic process of constructing a clear portrait of a company's ideal customer by ...

Close