Displaying 3 results from an estimated 3 matches for "is_read_vint".
2007 Aug 08
3
issues with index for table with over 18 million records
I have a MySQL table with over 18 million records in it. We are
indexing about 10 fields in this table with ferret.
I am having problems with the initial building of the index. I created
a rake task to run the "Model.rebuild_index" command in the background.
That process ran fine for about 2.5 days before it just suddenly
stopped. The log/ferret_index.log file says it got to about
2006 Nov 24
2
Strange error. Index corrupt on production server
We''ve been running Ferret for a few months on our site with great
result. But, just a monent ago the index suddenly became corrupt.
It all started with this error message:
:108250 is out of range [0..108183] for IndexWriter#[]
/usr/local/lib/ruby/gems/1.8/gems/ferret-0.10.9/lib/ferret/index.rb:382:in
`[]''
And after that every search resulted in this error:
A IOError
2006 Aug 15
2
Windows build with Visual Studio 2005 - some success
...RD;
+ return YYWORD;
}
int yylex(YYSTYPE *lvalp, QParser *qp)
--- ../../ferret/ferret/ext/store.h 2006-08-15 15:25:38.143765800 +1000
+++ ext/store.h 2006-08-15 14:54:55.157804300 +1000
@@ -121,8 +121,8 @@
unsigned int is_read_uint(InStream *is);
ullong is_read_ulong(InStream *is);
ullong is_read_vint(InStream *is);
-void is_skip_vints(InStream *is, register int cnt);
-void is_read_chars(InStream *is, char* buffer, int off, int len) ;
+extern inline void is_skip_vints(InStream *is, register int cnt);
+extern inline void is_read_chars(InStream *is, char* buffer, int off, int len) ;
char *is_read...