-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.pl
161 lines (138 loc) · 3.88 KB
/
example.pl
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
#!/usr/bin/perl -w
# NAME: Redis CappedCollection demonstration
use 5.010;
use strict;
use warnings;
#-- Common ---------------------------------------------------------------------
use Redis::CappedCollection qw(
$DEFAULT_SERVER
$DEFAULT_PORT
$E_NO_ERROR
$E_MISMATCH_ARG
$E_DATA_TOO_LARGE
$E_NETWORK
$E_MAXMEMORY_LIMIT
$E_MAXMEMORY_POLICY
$E_COLLECTION_DELETED
$E_REDIS
$E_DATA_ID_EXISTS
$E_OLDER_THAN_ALLOWED
);
my $server = $DEFAULT_SERVER.":".$DEFAULT_PORT; # the Redis Server
sub exception {
my $coll = shift;
my $err = shift;
die $err unless $coll;
if ( $coll->last_errorcode == $E_NO_ERROR )
{
# For example, to ignore
return unless $err;
}
elsif ( $coll->last_errorcode == $E_MISMATCH_ARG )
{
# Necessary to correct the code
}
elsif ( $coll->last_errorcode == $E_DATA_TOO_LARGE )
{
# You must use the control data length
}
elsif ( $coll->last_errorcode == $E_NETWORK )
{
# For example, sleep
#sleep 60;
# and return code to repeat the operation
#return 'to repeat';
}
elsif ( $coll->last_errorcode == $E_MAXMEMORY_LIMIT )
{
# For example, return code to restart the server
#return 'to restart the redis server';
}
elsif ( $coll->last_errorcode == $E_MAXMEMORY_POLICY )
{
# Correct Redis server 'maxmemory-policy' setting
}
elsif ( $coll->last_errorcode == $E_COLLECTION_DELETED )
{
# For example, return code to ignore
#return "to ignore $err";
}
elsif ( $coll->last_errorcode == $E_REDIS )
{
# Independently analyze the $err
}
elsif ( $coll->last_errorcode == $E_DATA_ID_EXISTS )
{
# For example, return code to reinsert the data
#return "to reinsert with new data ID";
}
elsif ( $coll->last_errorcode == $E_OLDER_THAN_ALLOWED )
{
# Independently analyze the situation
}
else
{
# Unknown error code
}
die $err if $err;
}
my ( $id, $coll, @data );
eval {
$coll = Redis::CappedCollection->create(
redis => $server,
name => 'Some name', # Create a collection with the specified name
);
};
exception( $coll, $@ ) if $@;
print "'", $coll->name, "' collection created.\n";
#-- Producer -------------------------------------------------------------------
#-- New data
eval {
$id = $coll->insert(
'Some_unique_id',
123, # data id
'Some data stuff',
);
print "Added data in a list with '", $id, "' id\n";
if ( $coll->update( $id, 0, 'Some new data stuff' ) )
{
print "Data updated successfully\n";
}
else
{
print "The data is not updated\n";
}
};
exception( $coll, $@ ) if $@;
#-- Consumer -------------------------------------------------------------------
#-- Fetching the data
eval {
@data = $coll->receive( $id );
print "List '$id' has '$_'\n" foreach @data;
# or
while ( my ( $id, $data ) = $coll->pop_oldest )
{
print "List '$id' had '$data'\n";
}
};
exception( $coll, $@ ) if $@;
#-- Utility --------------------------------------------------------------------
#-- Getting statistics
my ( $lists, $items );
eval {
my $info = $coll->collection_info;
print 'An existing collection uses: ',
$info->{items}, ' items are placed in ',
$info->{lists}, ' lists', "\n";
print "The collection has '$id' list\n" if $coll->list_exists( 'Some_id' );
print "Collection '", $coll->name, "' has '$_' list\n" foreach $coll->lists;
};
exception( $coll, $@ ) if $@;
#-- Closes and cleans up -------------------------------------------------------
eval {
$coll->quit;
# Before use, make sure that the collection is not being used by other customers
# $coll->drop_collection;
};
exception( $coll, $@ ) if $@;
exit;