Displaying 13 results from an estimated 13 matches for "kanakala".
Did you mean:
kanagawa
2010 May 12
0
Venkatesh Kanakala wants to stay in touch on LinkedIn
LinkedIn
------------
I'd like to add you to my professional network on LinkedIn.
- Venkatesh Kanakala
Venkatesh Kanakala
Sr.Oracle Apps DBa at Riyadh College of Dentistry and Pharmacy
Saudi Arabia
Confirm that you know Venkatesh Kanakala
https://www.linkedin.com/e/isd/1296308394/VWY2l4ZF/
------
(c) 2010, LinkedIn Corporation
-------------- next part --------------
An HTML attachment was scr...
2006 Jan 02
3
Multiple indexes?
Hi,
I''m indexing records from different database tables and they have
identical column names in many cases. Does this mean I have to create
different indexes for each table?
TIA,
Vamsee.
2006 Jan 05
6
Problems with Ferret in RForum
Hi,
I have been using Ferret on ruby-forum.com for a few days. While the
searching works with reasonable performance, there are a lot of problems
related to indexing. Sometimes the process hangs with 100% CPU usage,
sometimes it leaves Lockfiles in the directory (causing other processes
to fail while one ist still working), sometimes it even crashes with a
segfault.
I''m going to
2006 Jan 05
2
ActiveRecord callbacks not happening
Hi,
I have a model class like so:
class Candidate < ActiveRecord::Base
validates_presence_of :name
@@index = FerretConfig::INDEX
def self.after_destroy
puts "Ferret: after_destroy called"
@@index.query_delete("+id:#{self.id} +ferret_class:#{self.class.name}")
optimize_index
end
end
But when I delete a record, the after_destroy is never called.
2005 Dec 18
1
assert_template fails?
Hi All,
I have a seemingly simple problem - but can''t figure out the problem. I
have a simple functional test like so:
def test_should_show_search_dropdown
get :index
assert_response :success
assert_template :search
end
Inspite of having search.rhtml in /app/views/layout, it fails with an error:
1) Error:
test_should_show_search_dropdown(SearchControllerTest):
2006 Jan 10
1
search_each returns partial results?
Hi,
I''m having some trouble with ferret search_each. I''m posting rails''
script/console output, so I guess you can decrypt it:
>> res = []
=> []
>> index.search_each(''name: a*'') do |doc, score|
?> res << doc
>> end
=> 50
>> res.size
=> 10
>>
I''m guessing the ''=>50''
2005 Dec 31
2
Some newbie questions
Hi all,
I''m newly discovering Ferret, and just did a crash course on Lucene to
(I get the concepts behind it). But I''m have a few doubts:
1. What is the ''recommended'' way of integrating Ferret into my app now?
The gem version or the plugin?
2. Where do I checkout the plugin from? Do I just copy the version on
the wiki?
Those apart, Ferret is really
2005 Aug 25
1
newbie questions about hosting address
...gle)
5. Re: Re: Fear of Commitment (Christopher Singley)
6. Re: global variables (Fran?ois Beausoleil)
7. Re: London on Rails (Matthew Denner)
8. Suggestions for new view renderer - CodePieces (Jan Moli?)
9. different session cookies in app (G?bor SEBESTY?N)
10. Double Render Error: Reason? (Vamsee Kanakala)
----------------------------------------------------------------------
Message: 1
Date: Thu, 25 Aug 2005 15:29:20 +0100
From: Chris Korhonen
Subject: Re: [Rails] London on Rails
To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
Message-ID:
Content-Type: text/plain; charset=ISO-8859-...
2005 Dec 31
26
Free "Agile Web Development with Rails" Text
Hi All,
I''m a RoR n00b that has been lurking for a week or so. About two weeks
ago I bought the text version of Agile Web Development with Rails.
Today, I bought the .pdf version because I run a Sony Notebook and find
a .pdf more user friendly. Therefore I have the text to give away for
free. If anyone in the continental US would like the copy please let me
know and I''ll mail it
2006 Jan 02
11
aligning Ferret''s IndexSearcher.search API with Lucene''s
Recently I''ve been revisiting some of my search code. With a greater
understanding of how Java Lucene implements its search methods, I
realized that one level of abstraction is not present in the Ferret
classes/methods. Here are the relevant method signatures:
Ferret''s search methods:
in Ferret::Index::Index:
search(query, options = {}) -> returns a TopDocs
2006 Apr 30
82
Mongrel 3.15, Ubuntu and Park place (S3)
Hello. I installed under Ubuntu (Dapper) Park Place. I followed the
instructions given at the RedHanded site. I get the following mongrel
error when launching the application:
** Please login in with `admin'' and password `pass@word1''
** You should change the default password or delete the admin at
soonest chance!/usr/lib/ruby/gems/1.8/gems/mongrel-0.3.12.5/lib/mongrel.rb:584:in
2006 Jan 06
0
Constructing a query from an object
Hi,
Apart from checking each field in an object created from form
params, is there an easy way I can construct a query from an object? For
example, I''m doing this:
@candidate = Candidate.new(params[:candidate])
And go on to check each attribute if it''s blank and thereby constructing
a query. It''s pretty common, so I''m guessing there should be a easier
2005 Nov 19
0
upload_status_for undefined method?
Hi all,
I''m trying to put in an upload progress bar for my application,
and when I try:
class ContactsController < ApplicationController
auto_complete_for :contact, :name
upload_status_for :create
...
I get this error:
undefined method `upload_status_for'' for ContactsController:Class
How can that be? Isn''t progress bar part of ActionView,
which is