Re: redis beginner question

2011-11-16 Thread Rafael Durán Castañeda
El 16/11/11 03:22, Jabba Laci escribió: Hi, I'm reading the redis documentation and there is one thing that bothers me. For redis, you need to start a server on localhost. Is there an easy way that my Python script starts this server automatically? Before using my script, I don't want to start r

Re: redis beginner question

2011-11-16 Thread Roy Smith
In article , Jabba Laci wrote: > > Why do you want to stop redis after your program terminates?  Generally, > > you just start redis up when the system boots and leave it running. > > Hi, > > OK, so it's more like MySQL or PostgeSQL, i.e. leave the server > running in the background. That's h

Re: redis beginner question

2011-11-16 Thread Jabba Laci
> Why do you want to stop redis after your program terminates?  Generally, > you just start redis up when the system boots and leave it running. Hi, OK, so it's more like MySQL or PostgeSQL, i.e. leave the server running in the background. I wanted to use it like SQLite, i.e. let it run only when

Re: redis beginner question

2011-11-15 Thread Roy Smith
In article , Jabba Laci wrote: > Hi, > > I'm reading the redis documentation and there is one thing that > bothers me. For redis, you need to start a server on localhost. Is > there an easy way that my Python script starts this server > automatically? Before using my script, I don't want to sta

redis beginner question

2011-11-15 Thread Jabba Laci
Hi, I'm reading the redis documentation and there is one thing that bothers me. For redis, you need to start a server on localhost. Is there an easy way that my Python script starts this server automatically? Before using my script, I don't want to start redis-server each time. When my program ter