[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Rube newb: What is the term for this?

Sam Wilson

1/13/2009 6:15:00 AM

I'm learning Ruby, I'm sorry if this question is stupid.

Let's say a have a blog. Can Ruby do some operations to the database
let's say once a day. Just for imagination's sake let's say the
operation would be to create a new post that inputs standard info like
"I like turtles today!" and it does this every day. But it doesn't
require a person to visit the site to happen.

What's this kind of operation called and is it a pain in the neck to
make work?
2 Answers

Nit Khair

1/13/2009 7:03:00 AM

0

Sam Wilson wrote:
> I'm learning Ruby, I'm sorry if this question is stupid.
>
> Let's say a have a blog. Can Ruby do some operations to the database
> let's say once a day. Just for imagination's sake let's say the
> operation would be to create a new post that inputs standard info like
> "I like turtles today!" and it does this every day. But it doesn't
> require a person to visit the site to happen.
>
> What's this kind of operation called and is it a pain in the neck to
> make work?
What you want is a job/cron job, background process, daemon ..

Any language that can write into your blogs database will do. Even a
shell script could work. With ruby you can use Ruby DBI or some other
mapper of your choice to insert into the database.

Then create an entry in your crontab file (crontab -e) and put the time
for when you want the script to run.

Depending on your blog software you may also consider posting to your
blog rather than writing to the database. Check mtsend.py as an example
(there are ruby versions also, cant recall, for writing to wordpress and
other blogs).

hth

--
Posted via http://www.ruby-....

Phlip

1/13/2009 3:20:00 PM

0

Ruby Rabbit wrote:

>> Let's say a have a blog. Can Ruby do some operations to the database
>> let's say once a day...

> What you want is a job/cron job, background process, daemon ..

RR forgot the disclaimer: Ruby is a language, and this is very probably a
question about Ruby on Rails, which is a platform. Further questions about Rails
will get the best answer on its Google Group...