-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathglossar.tex
96 lines (87 loc) · 2.73 KB
/
glossar.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
\newglossaryentry{Channel}
{
name=Channel,
description={
Messaging applications transmit data through a Message Channel, a virtual
pipe that connects a sender to a receiver. A newly installed messaging
system does not contain any channels; you must determine how your
applications need to communicate and then create the channels to facilitate
it.
}
}
\newglossaryentry{Msg}
{
name=Message,
description={
A Message is an atomic packet of data that can be transmitted on a
channel. Thus to transmit data, an application must break the data into
one or more packets, wrap each packet as a message, and then send the
message on a channel. Likewise, a receiver application receives a
message and must extract the data from the message to process it. The
message system will try repeatedly to deliver the message (e.g.,
transmit it from the sender to the receiver) until it succeeds.
}
}
\newglossaryentry{Socket}
{
name=Socket,
description={
Communication endpoint to which an application can write data
that are to be sent out over the underlying network, and from which incoming end
data can be read. \cite{TAN06}
}
}
\newglossaryentry{Queue}
{
name=Queue,
description={-}
}
\newglossaryentry{FIFO}
{
name=FIFO,
description={-}
}
\newglossaryentry{ETL}
{
name=ETL,
description={Extract (data from homogeneous or heterogeneous data sources),
Transform (the data for storing it in proper format or structure
for querying and analysis purpose)
Load (it into the final target)
}
}
\newglossaryentry{file system}
{
name="file system",
description={
A file system is used to control how data is stored and retrieved. Some
file systems are used on local data storeage devices; others privde file
access via a newtwork protocol.
}
}
\newglossaryentry{page cache}
{
name="page cache",
description={
Page cache (often called disk cache) is a cache of disk-backed pages
kept in main memory (RAM) by the operating system for quicker access.
}
}
\newglossaryentry{replication}
{
name="replication",
description={
Replication in computing involves sharing information so as to ensure
consistency between redundant resources, such as software or hardware
components, to improve reliability, fault-tolerance, or accessibility
}
}
\newglossaryentry{long poll}
{
name="long poll",
description={
With long polling, the client requests information from the server
exactly as in normal polling, except it issues its requests at a much
slower frequency.
}
}