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

(-)a/C4/Biblio.pm (-21 / +11 lines)
Lines 115-120 use Koha::SearchEngine::Indexer; Link Here
115
use Koha::SimpleMARC;
115
use Koha::SimpleMARC;
116
use Koha::Libraries;
116
use Koha::Libraries;
117
use Koha::Util::MARC;
117
use Koha::Util::MARC;
118
use Koha::AuthorisedValues;
118
119
119
=head1 NAME
120
=head1 NAME
120
121
Lines 1509-1536 sub GetAuthorisedValueDesc { Link Here
1509
    }
1510
    }
1510
1511
1511
    my $dbh = C4::Context->dbh;
1512
    my $dbh = C4::Context->dbh;
1512
    if ( $category ne "" ) {
1513
    if ( $category ) {
1513
        $cache_key = "AV_descriptions:" . $category;
1514
        my $description = Koha::AuthorisedValues->get_description_by_category_and_authorised_value(
1514
        my $av_descriptions = $cache->get_from_cache( $cache_key, { unsafe => 1 } );
1515
            {
1515
        if ( !$av_descriptions ) {
1516
                category => $category,
1516
            $av_descriptions = {
1517
                authorised_value => $value
1517
                map {
1518
            }
1518
                    $_->authorised_value =>
1519
        );
1519
                      { lib => $_->lib, lib_opac => $_->lib_opac }
1520
        return $opac ?
1520
                } Koha::AuthorisedValues->search(
1521
            $description->{'opac_description'} : $description->{'lib'};
1521
                    { category => $category },
1522
                    {
1523
                        columns => [ 'authorised_value', 'lib_opac', 'lib' ]
1524
                    }
1525
                )->as_list
1526
            };
1527
            $cache->set_in_cache($cache_key, $av_descriptions);
1528
        }
1529
        return ( $opac && $av_descriptions->{$value}->{'lib_opac'} )
1530
          ? $av_descriptions->{$value}->{'lib_opac'}
1531
          : $av_descriptions->{$value}->{'lib'};
1532
    } else {
1522
    } else {
1533
        return $value;    # if nothing is found return the original value
1523
        return $value; # if nothing is found return the original value
1534
    }
1524
    }
1535
}
1525
}
1536
1526
(-)a/Koha/AuthorisedValue.pm (-8 / +6 lines)
Lines 58-69 sub store { Link Here
58
    }
58
    }
59
    else {
59
    else {
60
        my %updated_columns = $self->_result->get_dirty_columns;
60
        my %updated_columns = $self->_result->get_dirty_columns;
61
61
        $flush = exists $updated_columns{lib}
62
        if (   exists $updated_columns{lib}
62
            or exists $updated_columns{lib_opac};
63
            or exists $updated_columns{lib_opac} )
64
        {
65
            $flush = 1;
66
        }
67
    }
63
    }
68
64
69
    $self->_check_is_integer_only;
65
    $self->_check_is_integer_only;
Lines 71-77 sub store { Link Here
71
    $self = $self->SUPER::store;
67
    $self = $self->SUPER::store;
72
68
73
    if ($flush) {
69
    if ($flush) {
74
        my $key = "AV_descriptions:".$self->category;
70
        my $category = $self->category;
71
        my $key = "AV_descriptions:$category";
75
        $cache->clear_from_cache($key);
72
        $cache->clear_from_cache($key);
76
    }
73
    }
77
74
Lines 86-92 AuthorisedValue specific C<delete> to clear relevant caches on delete. Link Here
86
83
87
sub delete {
84
sub delete {
88
    my $self = shift @_;
85
    my $self = shift @_;
89
    my $key = "AV_descriptions:".$self->category;
86
    my $category = $self->category;
87
    my $key = "AV_descriptions:$category";
90
    $cache->clear_from_cache($key);
88
    $cache->clear_from_cache($key);
91
    $self->SUPER::delete(@_);
89
    $self->SUPER::delete(@_);
92
}
90
}
(-)a/Koha/AuthorisedValues.pm (-19 / +19 lines)
Lines 143-172 sub get_descriptions_by_koha_field { Link Here
143
143
144
sub get_description_by_category_and_authorised_value {
144
sub get_description_by_category_and_authorised_value {
145
    my ( $self, $params ) = @_;
145
    my ( $self, $params ) = @_;
146
    return unless defined $params->{category} && defined $params->{authorised_value};
146
    return unless defined $params->{category} and defined $params->{authorised_value};
147
147
148
    my $category = $params->{category};
148
    my $category = $params->{category};
149
    my $value = $params->{authorised_value};
149
    my $value = $params->{authorised_value};
150
150
151
    my $memory_cache = Koha::Cache::Memory::Lite->get_instance;
151
    my $cache = Koha::Caches->get_instance();
152
    my $cache_key = "AV_description_by_category_and_authorised_value:$category:$value";
152
    my $cache_key = "AV_descriptions:$category";
153
    my $description = $memory_cache->get_from_cache($cache_key);
153
    my $descriptions = $cache->get_from_cache($cache_key, { unsafe => 1 });
154
154
155
    unless (defined $description) {
155
    unless (defined $descriptions) {
156
        my $av = $self->search(
156
        $descriptions = {
157
            {
157
            map {
158
                category => $category,
158
                $_->authorised_value => {
159
                authorised_value => $value
159
                    lib => $_->lib,
160
            }
160
                    opac_description => $_->opac_description
161
        )->next;
161
                }
162
        $description = defined $av ? {
162
            } $self->search(
163
            lib => $av->lib,
163
                {
164
            opac_description => $av->opac_description
164
                    category => $category
165
        } : {};
165
                }
166
        $memory_cache->set_in_cache( $cache_key, $description );
166
            )->as_list
167
        };
168
        $cache->set_in_cache($cache_key, $descriptions);
167
    }
169
    }
168
170
    return defined $descriptions->{$value} ? $descriptions->{$value} : {};
169
    return $description;
170
}
171
}
171
172
172
=head3 get_descriptions_by_marc_field
173
=head3 get_descriptions_by_marc_field
173
- 

Return to bug 31856