Commit df94908a authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

2010-09-02 Kazuhiko

* XXX limit indexing full text size up to approx. 8MB, otherwise SphinxQL operations fail for very large texts.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@38125 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 9d426abe
......@@ -107,7 +107,7 @@ VALUES\n
<dtml-in prefix="loop" expr="_.range(_.len(uid))">\n
(\n
<dtml-sqlvar expr="uid[loop_item]" type="int">, \n
<dtml-sqlvar expr="SearchableText[loop_item] or \'\'" type="string">\n
<dtml-sqlvar expr="(SearchableText[loop_item] or \'\')[:8388550]" type="string">\n
)\n
<dtml-if sequence-end>\n
<dtml-else>\n
......@@ -163,7 +163,7 @@ VALUES\n
<dtml-in prefix="loop" expr="_.range(_.len(uid))">\n
(\n
<dtml-sqlvar expr="uid[loop_item]" type="int">, \n
<dtml-sqlvar expr="SearchableText[loop_item] or \'\'" type="string">\n
<dtml-sqlvar expr="(SearchableText[loop_item] or \'\')[:8388550]" type="string">\n
)\n
<dtml-if sequence-end>\n
<dtml-else>\n
......
2010-09-02 Kazuhiko
* XXX limit indexing full text size up to approx. 8MB, otherwise SphinxQL operations fail for very large texts.
2010-08-19 Kazuhiko
* initial commit
\ No newline at end of file
1
\ No newline at end of file
2
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment