|
Lines 58-63
Koha::Item - Koha Item object class
Link Here
|
| 58 |
|
58 |
|
| 59 |
=head3 store |
59 |
=head3 store |
| 60 |
|
60 |
|
|
|
61 |
$item->store; |
| 62 |
|
| 63 |
$params can take an optional 'skip_modzebra_update' parameter. |
| 64 |
If set, the reindexation process will not happen (ModZebra not called) |
| 65 |
|
| 66 |
NOTE: This is a temporary fix to answer a performance issue when lot of items |
| 67 |
are added (or modified) at the same time. |
| 68 |
The correct way to fix this is to make the ES reindexation process async. |
| 69 |
You should not turn it on if you do not understand what it is doing exactly. |
| 70 |
|
| 61 |
=cut |
71 |
=cut |
| 62 |
|
72 |
|
| 63 |
sub store { |
73 |
sub store { |
| 64 |
- |
|
|