Search found 235 matches

by R45
Wed Jul 21, 2010 5:11 am
Forum: [3.x][Archive] RFCs
Topic: [RFC|Accepted] Symfony 2
Replies: 84
Views: 181912

Re: [RFC] Symfony 2

I don't have experience with Symfony, but I am completely for a move towards using an existing framework. It would not only be more efficient (from a development standpoint), but also better leverage of the biggest benefit of Open Source. Use of a framework can reduce phpBB development lead time and...
by R45
Tue Jul 20, 2010 10:07 pm
Forum: [3.x] Discussion
Topic: A Rant on Forums
Replies: 9
Views: 21497

Re: A Rant on Forums

However, the comments from slashdot are completely irrelevant. He dismisses the entire paradigm of forum software, and there's little that can be done to change the fundamental structure of how forums work. Completely disagree there. The comments shouldn't be dismissed like that, there is quite a b...
by R45
Tue Jul 20, 2010 9:28 pm
Forum: [3.x] Discussion
Topic: Blizzard's New Forum
Replies: 10
Views: 25425

Re: Blizzard's New Forum

Less is more when it comes to an intuitive interface. There are many lessons to be learnt from Blizzard's forum.
by R45
Thu Jan 18, 2007 2:57 am
Forum: Chit Chat
Topic: Locking Forums?
Replies: 1842
Views: 1184484

Re: Locking Forums?

In total there are 90 users online :: 28 registered, 2 hidden and 60 guests Most users ever online was 1320 on 07 Mar 2005 18:05 Registered users: agent00shoe, BMG, boardhopper, CardsFanInChiTown, CTCNetwork, dhn, drewtscott, EXreaction, Gigabot [Bot], Google [Bot], Grok, Highway of Life, JusTwiste...
by R45
Wed Apr 05, 2006 3:02 pm
Forum: [3.0/Olympus] Discussion
Topic: A question about the Olympus search engine
Replies: 8
Views: 9061

Re: A question about the Olympus search engine

You can use MySQL's fulltext in phpBB, which would offer you much better performance for most forums. It eliminates phpBB's search tables and uses the built-in MySQL fulltext engine. Keep in mind though, when your forum gets very large, even MySQL's fulltext will become a problem. In the meantime, y...
by R45
Tue Apr 04, 2006 5:41 pm
Forum: [3.0/Olympus] Discussion
Topic: Main phpBB Site
Replies: 11
Views: 10876

Re: Main phpBB Site

My recollection is that phpBB.com was updated for phpBB 2 final release. The new phpBB.com and the new phpBB were rolled out together—as I recall. I also remember a policy Paul harped on, before even phpBB2, that phpBB.com would never be used for testing future releases as some others have done (ie...
by R45
Thu Mar 30, 2006 10:05 pm
Forum: [3.0/Olympus] Discussion
Topic: differences between fulltext phpbb vs fulltext mysql?
Replies: 26
Views: 27210

Re: differences between fulltext phpbb vs fulltext mysql?

MySQL can do more to increase speed than store the entire table in RAM. ;) It will keep a file open on the hard drive so when its requested again it doesnt have to find the file and open it. You lose benefits like that. The overheads on opening and closing file pointers are minimal, real database b...
by R45
Thu Mar 30, 2006 9:31 pm
Forum: [3.0/Olympus] Discussion
Topic: differences between fulltext phpbb vs fulltext mysql?
Replies: 26
Views: 27210

Re: differences between fulltext phpbb vs fulltext mysql?

There is one problem with that code. It destroys MySQL's ability to cache the search tables. There are thousands of tables so it cant store any one in the memory or even just keep the file handle open as it doesnt know which one will be used. That's the intention, it's a disk based solution as due ...
by R45
Thu Mar 30, 2006 4:38 pm
Forum: [3.0/Olympus] Discussion
Topic: Probably A Stupid Question... But I Don't Know The Answer
Replies: 18
Views: 14915

Re: Probably A Stupid Question... But I Don't Know The Answe

Greeves wrote: Thanks everyone! So is 2.1 equivalent to 3.0?
Yes, 2.1 is the development version number. It will be released as 3.0.
by R45
Thu Mar 30, 2006 1:10 pm
Forum: [3.0/Olympus] Discussion
Topic: differences between fulltext phpbb vs fulltext mysql?
Replies: 26
Views: 27210

Re: differences between fulltext phpbb vs fulltext mysql?

MySQL's full text search capabilities are basically the same as phpBB's. The difference is that MySQL has it built in to the db thus needing less processing while phpBB does it in php requiring more code and SQL queries. They both dont scale well. Thats just how search is. I'd imagine that MySQL's ...