View | Details | Raw Unified | Return to bug 13431
Collapse All | Expand All

(-)a/Koha/Cache.pm (-2 / +1 lines)
Lines 161-167 sub _initialize_fastmmap { Link Here
161
    my ($self) = @_;
161
    my ($self) = @_;
162
162
163
    $self->{'fastmmap_cache'} = Cache::FastMmap->new(
163
    $self->{'fastmmap_cache'} = Cache::FastMmap->new(
164
        'share_file'  => "/tmp/sharefile-koha-$self->{'namespace'}",
164
        'share_file'  => "/tmp/sharefile-koha-".$self->{'namespace'}."-".getpwuid($>),
165
        'expire_time' => $self->{'timeout'},
165
        'expire_time' => $self->{'timeout'},
166
        'unlink_on_exit' => 0,
166
        'unlink_on_exit' => 0,
167
    );
167
    );
168
- 

Return to bug 13431