Nearby Words

paging

[pey-jing] Origin

pag·ing

[pey-jing]
noun Computers.
a technique of storage management that transfers pages from secondary storage to main storage when they are required, and returns them to secondary storage when they are not. Compare page1 (def. 6a).

Origin:
1965–70; page1 + -ing1

:10

:09

:08

:07

:06

:05

:04

:03

:02

:01

Paging is always a great word to know.
So is refresh. Does it mean:
a protocol for a menu-based system of accessing documents on the Internet; any program that implements this protocol
to read and write the contents of dynamic storage at intervals in order to avoid loss of data
Dictionary.com Unabridged

page

1[peyj] noun, verb, paged, pag·ing.
noun
1.
one side of a leaf of something printed or written, as a book, manuscript, or letter.
2.
the entire leaf of such a printed or written thing: He tore out one of the pages.
3.
a single sheet of paper for writing.
4.
a noteworthy or distinctive event or period: a reign that formed a gloomy page in English history.
5.
Printing. the type set and arranged for a page.
EXPAND
6.
Computers.
a.
a relatively small block of main or secondary storage, up to about 1024 words.
b.
a block of program instructions or data stored in main or secondary storage.
c.
(in word processing) a portion of a document.
COLLAPSE
verb (used with object)
7.
8.
to turn pages (usually followed by through): to page through a book looking for a specific passage.

Origin:
1580–90; < Middle French < Latin pāgina column of writing, akin to pangere to fix, make fast

page

2[peyj] noun, verb, paged, pag·ing.
noun
1.
a boy servant or attendant.
2.
a youth in attendance on a person of rank or, in medieval times, a youth being trained for knighthood.
3.
an attendant or employee, usually in uniform, who carries messages, ushers guests, runs errands, etc.
4.
a person employed by a legislature to carry messages and run errands for the members, as in the U.S. Congress.
verb (used with object)
5.
to summon formally by calling out the name of repeatedly: He had his father paged in the hotel lobby.
6.
to summon or alert by electronic pager.
7.
to control (an electrical appliance, machine, etc.) remotely by means of an electronic signal.
8.
to attend as a page.

Origin:
1250–1300; Middle English (noun) < Old French < ?
Dictionary.com Unabridged
Based on the Random House Dictionary, © Random House, Inc. 2012.
Cite This Source Link To paging
Etymonline
Word Origin & History

page
"youth, lad, boy of the lower orders," c.1300, originally also "youth preparing to be a knight," from O.Fr. page, possibly via It. paggio, from M.L. pagius "servant," perhaps ult. from Gk. paidion "boy, lad," dim. of pais (gen. paidos) "child;" but some sources consider this unlikely and suggest instead
EXPAND
L. pagus "countryside," in sense of "boy from the rural regions" (see pagan). Meaning "youth employed as a personal attendant to a person of rank" is first recorded c.1460; this was transf. from late 18c. to boys who did personal errands in hotels, clubs, etc., also in U.S. legislatures. The verb (1904) is from the notion of "to send a page after" someone. Pager "device that emits a signal when activated by a telephone call" is first attested 1968.
COLLAPSE
Online Etymology Dictionary, © 2010 Douglas Harper
Cite This Source
FOLDOC
Computing Dictionary

paging definition

operating system
A technique for increasing the memory space available by moving infrequently-used parts of a program's working memory from RAM to a secondary storage medium, usually hard {disk. The unit of transfer is called a page.
A memory management unit (MMU) monitors accesses to memory and splits each address into a page number (the most significant bits) and an offset within that page (the lower bits). It then looks up the page number in its page table. The page may be marked as paged in or paged out. If it is paged in then the memory access can proceed after translating the virtual address to a physical address. If the requested page is paged out then space must be made for it by paging out some other page, i.e. copying it to disk. The requested page is then located on the area of the disk allocated for "swap space" and is read back into RAM. The page table is updated to indicate that the page is paged in and its physical address recorded.
The MMU also records whether a page has been modified since it was last paged in. If it has not been modified then there is no need to copy it back to disk and the space can be reused immediately.
Paging allows the total memory requirements of all running tasks (possibly just one) to exceed the amount of physical memory, whereas swapping simply allows multiple processes to run concurrently, so long as each process on its own fits within physical memory.
(1996-11-22)

The Free On-line Dictionary of Computing, © Denis Howe 2010 http://foldoc.org
Cite This Source
Dictionary.com, LLC. Copyright © 2012. All rights reserved.
  • Please Login or Sign Up to use the Recent Searches feature