これが私の最初の質問だと思います。できるだけ明確にしたいと思います。私は休閑コードを持っています。
def index_service_name
@currentService = Feed.where("name = '#{params[:name]}'").first
serviceId = @currentService['id']
serviceName = @currentService['name']
serviceFeedUrl = @currentService['feedUrl']
feed = Feedzirra::Feed.fetch_and_parse(serviceFeedUrl)
feed.entries.reverse.each do |entry|
case serviceName
when 'service1', 'service2'
uniqueId = entry.url.match(/\d+$/)[0]
postContent = Nokogiri::HTML( entry.content ).css('img').map{ |i| i['src'] }.first # this would be an array.
else
uniqueId = entry.url
postContent = entry.content
end
isIndexed = Post.where("post_unique_id = '#{uniqueId}' AND post_service = '#{serviceId}'")
if postContent =~ %r{\Ahttps?://.+\.(?:jpe?g|png|gif)\z}i
isImage = true
elsif postContent =~ %r{http?s://(.*)/maxW500/}i
isImage = true
end
if isIndexed.empty? && isImage
sleep 1.seconds
Post.create(post_service: serviceId, post_service_name: serviceName, title: entry.title, content: postContent, url: entry.url, post_unique_id: uniqueId)
end
end
通常のURL(/ something / service / service1、/ something / service / service2)を使用してサービスをトリガーします。それらを同時にトリガーすると、それらのすべてが他の1つが終了するのを待っているように見えます(したがって、私のDBでは、データは最初にservice1から保存され、その後service2から保存されます)。これはマルチスレッドと関係があると思いますが、RORはまだサポートしていないことを理解しています。
私はRORの初心者なので、優しくしてください。どんな助けでも大歓迎です。