No, nothing is added to delayed_jobs.

>> p = Project.last
=> #<Project id: 2035, employer_id: 1017, title: "Сайт под клю
\321\207", realm_id: 2, branch_id: 32, fixed_price: true, rate: 0,
contest_start_at: "2010-07-10 00:00:00", contest_end_at: "2010-07-17
00:00:00", longiness: 7, longiness_measuring_unit: 1,
contractor_location: 0, description: "<p>Нужен сайт под ключ со
все�...", contractor_requirements: "", created_at: "2010-07-10
10:19:30", updated_at: "2010-07-12 22:27:35", min_price: 2000,
max_price: 5000, contractor_city_id: nil, state: "archived",
avg_bid_rate: nil, longiness_sec: 4233600, min_bid_rate: nil,
max_bid_rate: nil, bids_count: 1, avg_bid_amount: 3000,
max_bid_amount: nil, min_bid_amount: nil, min_bid_longiness_sec: nil,
max_bid_longiness_sec: nil, avg_bid_longiness_sec: 4233600, delta:
false, slug: "sait-pod-kliuch-2035", balance: nil, comments_count: 0,
freezer_id: nil, frozen_at: nil, attachments_count: 0, safe_deal:
true, start_date: "2010-07-12", views_count: 2, milestones_count: 1>
>> p.title = "Сайт под клююююч"
=> "Another title"
>> p.save!
=> true
>> p.reload.delta
=> true
>> Delayed::Job.all
> []






On Jul 16, 8:33 pm, Jim Ruther Nill <[email protected]> wrote:
> just trying to help here. try stopping the delayed_job worker and update a
> record in the console.  after updating, see if a new record is added in the
> delayed_job table.
>
>
>
> On Fri, Jul 16, 2010 at 8:36 PM, Sergey Gershun <[email protected]> wrote:
> > guys? does anyone now what is going on here?
>
> > On Jul 12, 11:10 am, Sergey Gershun <[email protected]> wrote:
> > > I'm using:
>
> > > Sphinx 0.9.9-release (r2117)
> > > ts-delayed-delta (1.0.2)
> > > delayed_job (1.8.4)
> > > thinking-sphinx (1.3.15)
>
> > > On Jul 10, 2:28 pm, Pat Allan <[email protected]> wrote:
>
> > > > Hmm, plenty going on there... nothing odd, as far as I can see.
>
> > > > So, let's jump back a step: what versions of Thinking Sphinx, Delayed
> > Job, ts-delayed-delta and Sphinx are you using?
>
> > > > --
> > > > Pat
>
> > > > On 10/07/2010, at 6:01 PM, Sergey Gershun wrote:
>
> > > > > here it is
>
> > > > >        define_index do
> > > > >          indexes "LOWER(projects.title)", :as => :title, :prefix =>
> > > > > true, :sortable => true
> > > > >          indexes description
> > > > >          indexes contractor_requirements
> > > > >          indexes skills(:title), :as => :skills
> > > > >          indexes branch(:title), :as => :branch
> > > > >          indexes realm(:title),  :as => :realm
> > > > >          indexes state
>
> > > > >          has projects(:id), :as => :project_id
> > > > >          has employer_id
> > > > >          has contractor_city_id
> > > > >          has safe_deal, :type => :integer
> > > > >          has fixed_price, :type => :integer
> > > > >          has rate, :type => :integer
> > > > >          has min_price, :type => :integer
> > > > >          has bids_count, :type => :integer
> > > > >          has created_at
> > > > >          has realm_id,    :as => :realm_id
> > > > >          has branch_id,   :as => :branch_ids
> > > > >          has skills(:id), :as => :skill_ids
>
> > > > >          where "(projects.state = 'published' OR projects.state =
> > > > > 'started')"
>
> > > > >          set_property :delta => :delayed
> > > > >          set_property :min_prefix_len => Project::MIN_PREFIX_LEN
> > > > >          set_property :enable_star => true
> > > > >        end
>
> > > > > On Jul 9, 7:37 pm, Pat Allan <[email protected]> wrote:
> > > > >> Hi Sergey
>
> > > > >> What else is in your define_index block?
>
> > > > >> --
> > > > >> Pat
>
> > > > >> On 09/07/2010, at 9:42 PM, Sergey Gershun wrote:
>
> > > > >>> Hi, guys
>
> > > > >>> I'm experiencing problems with delayed delta. Deltas are not run
> > > > >>> properly.
>
> > > > >>> here is my case
>
> > > > >>> class Project
> > > > >>>        define_index do
>
> > > > >>>          set_property :delta => :delayed
> > > > >>>        end
>
> > > > >>> migration:
>
> > > > >>> add_column :projects, :delta, :boolean, :default => true, :null =>
> > > > >>> false
>
> > > > >>> dd daemon is up and running. But new records do not show up in
> > seach
> > > > >>> results. And I do not see any records in delayed jobs table.
>
> > > > >>> Thanks, Sergey
>
> > > > >>> --
> > > > >>> You received this message because you are subscribed to the Google
> > Groups "Thinking Sphinx" group.
> > > > >>> To post to this group, send email to
> > [email protected].
> > > > >>> To unsubscribe from this group, send email to
> > [email protected]<thinking-sphinx%[email protected]>
> > .
> > > > >>> For more options, visit this group athttp://
> > groups.google.com/group/thinking-sphinx?hl=en.
>
> > > > > --
> > > > > You received this message because you are subscribed to the Google
> > Groups "Thinking Sphinx" group.
> > > > > To post to this group, send email to
> > [email protected].
> > > > > To unsubscribe from this group, send email to
> > [email protected]<thinking-sphinx%[email protected]>
> > .
> > > > > For more options, visit this group athttp://
> > groups.google.com/group/thinking-sphinx?hl=en.
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Thinking Sphinx" group.
> > To post to this group, send email to [email protected].
> > To unsubscribe from this group, send email to
> > [email protected]<thinking-sphinx%[email protected]>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/thinking-sphinx?hl=en.
>
> --
> -------------------------------------------------------------
> visit my blog athttp://jimlabs.heroku.com

-- 
You received this message because you are subscribed to the Google Groups 
"Thinking Sphinx" 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/thinking-sphinx?hl=en.

Reply via email to