search for: neville

Displaying 20 results from an estimated 55 matches for "neville".

2006 Sep 22
3
Error with :create => true and existing index
...ed, then Ferret throws an exception: IO Error occured: couldn''t rename file "index\_0.tmp" to "index\_0.cfs": <File exists> I guess that _0.cfs is held open by an IndexReader, so the :create is failing to delete it and hence the rename is failing. Kind Regards Neville
2006 Sep 20
8
Understanding boost ?
...entioned in other fields (:comments, :address) scored higher. I viewed the explanation from the searcher, but it wasn''t clear to me why the boost wasn''t pushing the :name = Keith document to the top. Any help on understanding field boosting and explain would be great. Regards Neville PS, the two explains are: Doc1: 0.3352959 = product of: 8.047102 = sum of: 4.011141 = weight(comments:<keith|keithb at zzzzzz.com|keithex> in 4697), product of: 0.5685414 = query_weight(comments:<keith|keithb at zzzzzz.com|keithex>), product of: 28.22057 = idf(comm...
2006 Sep 05
4
Ferret 0.10.2 - Index#search_each() and :num_docs
Hi, I seem to be having trouble getting more than 10 hits from Index#search_each since upgrading to 0.10.2 (ie, this was working in 0.9.4). Maybe a bug, as the #search_each doesn''t seem to use the options parameter any more ? Thanks, Neville =========================================== require ''rubygems'' require ''ferret'' p Ferret::VERSION idx = Ferret::Index::Index.new idx << {:id => 1, :name => ''Fred'', :occupation => ''Toon''} idx << {:id =&g...
2006 Sep 28
3
A few questions about numbers and dates
...nd Floats prior to indexing, which would store the field exactly as I need for presentation purposes, however I would lose sorting and range searching. I''m wondering what approaches people are using to manage formatting post retrieve from Ferret. Any pointers appreciated, Kind Regards Neville ========================== require ''rubygems'' require ''ferret'' require ''date'' p Ferret::VERSION @dir = Ferret::Store::RAMDirectory.new @index = Ferret::Index::Index.new(:dir => @dir) invoice = {:invoice_date => Date.new(2006,9,20), :in...
2006 Sep 15
2
Trouble with "updating" a document
...seem to be having trouble updating a doc, ie, deleting then re-adding to the index. The following script demonstrates my issue - I''m sure I''m missing something obvious, but I can''t seem to find the problem. Can someone point out where I am going wrong please ? Regards Neville === require ''rubygems'' require ''ferret'' p Ferret::VERSION @dir = Ferret::Store::RAMDirectory.new @index = Ferret::Index::Index.new(:dir => @dir) (1..1000).each do |n| @index << {:id => "doc#{n}", :name => "name #{n}"} end...
2005 Mar 03
5
Whats ''favicon.ico''
I''m seeing the following in the WEBbrick console output after every GET 192.168.0.108 - - [03/Mar/2005:15:35:19 AUS Eastern Daylight Time] "GET /favicon.ico HTTP/1.1" 200 60 - -> /favicon.ico What does /favicon.ico (which doesnt seem to exist in my source) do for Rails? _______________________________________________ Rails mailing list
2011 Jun 14
1
functions for polynomial and rational interplation?
Are there implementations of, e.g. Neville's algorithm, for interpolating polynomials through some data points? Nevilles' is an improvement on Lagrange interpolation. And how about interpolating rational functions? I could not find anything at rseek.org or at crantastic.org. thanks -- View this message in context: http://r.789695.n...
2006 Aug 09
0
George Neville-Neil talks tomorrow.. live and webcast.
...0&lat=37.630293&lon=-122.420626&mlt=37.630293&mln=-122.420626&rezoom=0&.intl=us&addrtype=12&compass=&i_ov=1&appid=&pan_x=0&pan_y=0&panable=1>/) *Our Topic:* Network Protocol Development Tools and Techniques for FreeBSD *Our Speaker:* George Neville-Neil, co-author of the "Design and Implementation of the FreeBSD Operating System" "daemon" book. (Please note one-week delay from our regular meeting date. *Our Topic:* Abstract: While computers have gotten faster and more powerful the tools we use to develop network protoc...
2005 Mar 08
3
Configuring WEBBrick for Port 80
I''ve looked everywhere [except the right place], but I can''t find where to change WEBbrick from listening to port 3000 to port 80. Can anyone point me in the right direction. Thanks Neville _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
2005 Mar 09
10
Confused about extending the login generator ''user''
...s. If I leave it in then I get the failure above. I was hoping to be able to do something like this in my controller - am I off base? @user = @ession[''user''] @type = @user.type Do I need to ''require'' the ''user_type'' somewhere? Thanks, Neville
2006 Sep 14
2
Possiible Bug ? indexWriter#doc_count countsdeleted docs after #commit
...added again, but doesn''t show up in my searches. A #doc_count on the writer before and after #add_document shows that the index is 1 document larger, but I still cant #search for the updated doc. What do you think about having #add_document "yield" the doc_id if block_given? Neville
2006 Jun 05
6
Ferret Win32 Gem for windows users ...
...gem which includes the c performance code pre-compiled for those of us without a C compiler handy ? Zed Shaw seems to have cracked this particular nut with his Mongrel Win32 gem. Alternately, is there a zip of the Win32 .so Ferret needs that I could download and manually install? Kind Regards Neville Burnell -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/ferret-talk/attachments/20060605/84e05428/attachment.htm
2007 Mar 05
2
Warming up a new Searcher/Reader (Ferret 0.10.9 win32)
...oaded into RAM by my OS and into Ferret as needed. I''m thinking of "warming up" the OS and Ferret by processing a query or two, and I''d appreciate any details about the way Ferret loads the index, so that I can construct a good "warm up" query. Kind Regards Neville -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/ferret-talk/attachments/20070305/13b4bf16/attachment.html
2007 Feb 23
2
bug with boolean query evaluation containing parenthesis and NOT ?
...hich should be excluded by the NOT term. This is surprising because in this simple case, the parenthesis shouldn''t change the Boolean evaluation ... any pointers? Working Query: field1:value1 AND NOT field2:value2 Failing Query: field1:value1 AND ( NOT field2:value2 ) Kind Regards Neville
2006 Aug 28
12
Help with Multiple Readers, 1 Writer scenario
...at the end of the update run. Or can I close and reuse a single IndexWriter? I searched http://ferret.davebalmain.com/api for details on the MultiReader, but I couldn''t find any details. If someone could post a link to point me in the right direction that would be great. Thanks so much Neville
2005 Mar 05
9
Best practice to manage ''id'' hacking?
...mes /account/show/53 or /transaction/show/44 becomes /transaction/show/77 Well, I can change every find_by_* to include the account id from the session [is this safe, ie, what about cookie hacking?] What other techniques are people using to cope with ''id'' hacking? Thanks Neville _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
2005 Mar 03
19
Better tools for authoring the view
I''m hand editing my .css and .rhtml files using SciTE and hitting refresh in my browser to see the results - its slow going. What tools are people using to author their .css and .rhtml files? Thanks, Neville _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
2006 Dec 07
1
Range Query Term parsing bug in 0.10.6 win32 ?
...m should return names >= ''A'', but instead generates a parsing error Term: name:[A> Message: Nil bounds for range. A range must include either lower bound or an upper bound However, the slightly larger term, name:[AA> works just fine. Any pointers please? Kind Regards Neville
2006 May 25
2
VLAN info
...aven't found a lot of information in the best way to go about this. Has anyone managed to do this successfully in conjunction with asterisks? If so, could they provide an overview of what they did and how they find it? Did the performance improve after the VLANs were setup? Many Thanks, Alan Neville Barlan Technologies, Technical Support and Helpdesk, alan@barlan.ie +353 1 866 6111 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060525/3f37c237/attachment.htm
2006 May 31
3
Camping and Builder and XML
...der::XmlMarkup.new(:target => self) xml.instruct! xml.results do # # more xml builder stuff here # end end This works great! After hacking this together, it occurred to me that Camping/Markaby might have a better way, hence this email. Any comments/pointers welcome, Thanks Neville