@@ -, +, @@ --- Koha/Cache.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/Cache.pm +++ a/Koha/Cache.pm @@ -161,7 +161,7 @@ sub _initialize_fastmmap { my ($self) = @_; $self->{'fastmmap_cache'} = Cache::FastMmap->new( - 'share_file' => "/tmp/sharefile-koha-$self->{'namespace'}", + 'share_file' => "/tmp/sharefile-koha-".$self->{'namespace'}."-".getpwuid($>), 'expire_time' => $self->{'timeout'}, 'unlink_on_exit' => 0, ); --