Replies: 1 comment 12 replies
-
200 documents per second is actually pretty fast 😊 There's not much to optimize here anymore, no. |
Beta Was this translation helpful? Give feedback.
12 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I noticed, that indexing content from my CMS is extremely slow.
A regular 800 - 1000 word page takes about 3-5 seconds to index, which results in very long indexing times for a regular website with a few dozen pages.
Is there anything I can do to speed this up or find the bottlenecks?
Edit:
The bottleneck seems to be in
StateSetIndex.php
inside the functionindex()
.Calling
$this->stateSet->add($newState, $state, $mappedChar);
takes about0.03
seconds, which accumulates to a large delay.Beta Was this translation helpful? Give feedback.
All reactions