#2634: Bugs in Brian Beck's SoC project. Search-API
--------------------------+-------------------------------------------------
Reporter: Scater | Owner: bbeck
Type: defect | Status: new
Priority: high | Milestone: Version 0.93
Component: Contrib apps | Version: 0.95
Severity: major | Keywords: search-api;beck;lucene;index;
--------------------------+-------------------------------------------------
Here http://code.djangoproject.com/changeset/3632 - information about
adding search-api branch for Brian Beck's SoC project.
I have 2 major bugs in Lucene backend (lucene.py):
1. No index in no-utf encoding. My database and Django-site in cp-1251 (
Russian-Ukrainian). So i have 'InvalidArgsError' bug when i call
indexer.update() method.
Exception Value: (, '__init__', ('annotation',
'\xe0\xe0\xe0\xe0\xe0\xe0\xe0\xe0\xe0', , ))
\xe0..\xe0 - this is my russian text in Annotation field
2. When i complete update index in UTF, and use search like this:
for hit in News_Indexer.search(result_query):
result.append(hit.instance)
And update index once again - i have Java Exception: 'Cant delete file' or
'cant create file'
--
Ticket URL: <http://code.djangoproject.com/ticket/2634>
Django <http://code.djangoproject.org/>
The web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates
-~----------~----~----~----~------~----~------~--~---