jwaixs wrote:
> I need some kind
> of database that won't exit if the cgi-bin script has finished. This
> database need to be open all the time and communicate very easily with
> the cgi-bin framwork main class.
Maybe long-running multi-threaded processes for FastCGI, SCGI or similar
is what you'r
"jwaixs" <[EMAIL PROTECTED]> writes:
> If I should put the parsedwebsites in, for example, a tablehash it will
> be at least 5 times faster than just putting it in a file that needs to
> be stored on a slow harddrive. Memory is a lot faster than harddisk
> space. And if there would be a lot of peo
maybe look at Harvestman
http://cheeseshop.python.org/HarvestMan/1.4%20final
--
http://mail.python.org/mailman/listinfo/python-list
Well, thank you for your advice. So I have a couple of solutions, but
it can't become a server at its own so this means I will deal with
files.
Thank you for your advice, I'll first make it work... than the server.
Noud Aldenhoven
--
http://mail.python.org/mailman/listinfo/python-list
jwaixs wrote:
> If I should put the parsedwebsites in, for example, a tablehash it will
> be at least 5 times faster than just putting it in a file that needs to
> be stored on a slow harddrive. Memory is a lot faster than harddisk
> space. And if there would be a lot of people asking for a page al
If I should put the parsedwebsites in, for example, a tablehash it will
be at least 5 times faster than just putting it in a file that needs to
be stored on a slow harddrive. Memory is a lot faster than harddisk
space. And if there would be a lot of people asking for a page all of
them have to open
jwaixs wrote:
> Thank you, but it's not what I mean. I don't want some kind of client
> parser thing. But I mean the page is already been parsed and ready to
> be read. But I want to store this page for more use. I need some kind
> of database that won't exit if the cgi-bin script has finished. Thi
Thank you, but it's not what I mean. I don't want some kind of client
parser thing. But I mean the page is already been parsed and ready to
be read. But I want to store this page for more use. I need some kind
of database that won't exit if the cgi-bin script has finished. This
database need to be
You can catch the content of an url like this:
http://www.python.org/doc/current/lib/node478.html, from here you can
parse it, and the store the result e.g. in dictionary, you will have a
very well performing solution like this.
--
http://mail.python.org/mailman/listinfo/python-list