Re: Creating search engine in Python Good or Bad [in performance]

2007-04-19 Thread azrael
That's right. It all depends on your design. When you do a select you could brute force it to to return the data, but the speed comes from elegant designing and programing skills. Using C++ or even Better C would probably boost your database model. Try to sort the data in the database so you can ef

Re: Creating search engine in Python Good or Bad [in performance]

2007-04-19 Thread Larry Bates
Clement wrote: > I am now creating IR engine in python which has its own database > implementation . For nearly 2GB files it works fast. Can i expect the > same speed when my database goes large. Else i have to chose other > language[c/c++] for the speed. > Please tell me the solution..

Creating search engine in Python Good or Bad [in performance]

2007-04-19 Thread Clement
I am now creating IR engine in python which has its own database implementation . For nearly 2GB files it works fast. Can i expect the same speed when my database goes large. Else i have to chose other language[c/c++] for the speed. Please tell me the solution...