File Coverage

blib/lib/Data/HashMap/Shared/IS.pm
Criterion Covered Total %
statement 42 42 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 46 46 100.0


line stmt bran cond sub pod time code
1             package Data::HashMap::Shared::IS;
2 2     2   1515 use strict;
  2         6  
  2         124  
3 2     2   12 use warnings;
  2         5  
  2         121  
4 2     2   11 use Data::HashMap::Shared;
  2         19  
  2         1206  
5             our $VERSION = '0.01';
6              
7             sub import {
8 2     2   32 $^H{"Data::HashMap::Shared::IS/shm_is_put"} = 1;
9 2         8 $^H{"Data::HashMap::Shared::IS/shm_is_get"} = 1;
10 2         7 $^H{"Data::HashMap::Shared::IS/shm_is_remove"} = 1;
11 2         7 $^H{"Data::HashMap::Shared::IS/shm_is_exists"} = 1;
12 2         8 $^H{"Data::HashMap::Shared::IS/shm_is_size"} = 1;
13 2         6 $^H{"Data::HashMap::Shared::IS/shm_is_keys"} = 1;
14 2         6 $^H{"Data::HashMap::Shared::IS/shm_is_values"} = 1;
15 2         6 $^H{"Data::HashMap::Shared::IS/shm_is_items"} = 1;
16 2         7 $^H{"Data::HashMap::Shared::IS/shm_is_each"} = 1;
17 2         7 $^H{"Data::HashMap::Shared::IS/shm_is_iter_reset"} = 1;
18 2         8 $^H{"Data::HashMap::Shared::IS/shm_is_clear"} = 1;
19 2         6 $^H{"Data::HashMap::Shared::IS/shm_is_to_hash"} = 1;
20 2         6 $^H{"Data::HashMap::Shared::IS/shm_is_max_entries"} = 1;
21 2         5 $^H{"Data::HashMap::Shared::IS/shm_is_get_or_set"} = 1;
22 2         7 $^H{"Data::HashMap::Shared::IS/shm_is_put_ttl"} = 1;
23 2         5 $^H{"Data::HashMap::Shared::IS/shm_is_max_size"} = 1;
24 2         39 $^H{"Data::HashMap::Shared::IS/shm_is_ttl"} = 1;
25 2         8 $^H{"Data::HashMap::Shared::IS/shm_is_cursor"} = 1;
26 2         6 $^H{"Data::HashMap::Shared::IS/shm_is_cursor_next"} = 1;
27 2         7 $^H{"Data::HashMap::Shared::IS/shm_is_cursor_seek"} = 1;
28 2         7 $^H{"Data::HashMap::Shared::IS/shm_is_ttl_remaining"} = 1;
29 2         6 $^H{"Data::HashMap::Shared::IS/shm_is_capacity"} = 1;
30 2         7 $^H{"Data::HashMap::Shared::IS/shm_is_tombstones"} = 1;
31 2         6 $^H{"Data::HashMap::Shared::IS/shm_is_cursor_reset"} = 1;
32 2         6 $^H{"Data::HashMap::Shared::IS/shm_is_take"} = 1;
33 2         7 $^H{"Data::HashMap::Shared::IS/shm_is_flush_expired"} = 1;
34 2         6 $^H{"Data::HashMap::Shared::IS/shm_is_flush_expired_partial"} = 1;
35 2         7 $^H{"Data::HashMap::Shared::IS/shm_is_mmap_size"} = 1;
36 2         7 $^H{"Data::HashMap::Shared::IS/shm_is_touch"} = 1;
37 2         7 $^H{"Data::HashMap::Shared::IS/shm_is_reserve"} = 1;
38 2         6 $^H{"Data::HashMap::Shared::IS/shm_is_stat_evictions"} = 1;
39 2         7 $^H{"Data::HashMap::Shared::IS/shm_is_stat_expired"} = 1;
40 2         128239 $^H{"Data::HashMap::Shared::IS/shm_is_stat_recoveries"} = 1;
41             }
42              
43             1;