https://bugzilla.wikimedia.org/show_bug.cgi?id=20166


Roan Kattouw <roan.katt...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |roan.katt...@gmail.com




--- Comment #2 from Roan Kattouw <roan.katt...@gmail.com>  2009-08-10 22:55:14 
UTC ---
(In reply to comment #1)
> Prefix searches for Special:Log actually do seem to be available in trunk with
> $wgMiserMode off, but I'm not sure the queries are efficient.
They probably sort by log_timestamp only, which means they aren't efficient. In
order for these queries to be made efficient they need to sort by (log_title,
log_timestamp) (and be paged accordingly of course) but that doesn't produce a
useful/usable order in Special:Log.

Suggest WONTFIX for performance reasons: the only efficient way would produce
results like:
Foo 23:59
Foo 23:58
... all log events for Foo ever go here ...
Foo 00:00 <-- last log event to Foo ever in the DB
Foo/Bar 23:59
Foo/Bar 23:58
...
Foo/Bar 00:00
Foo/Baz 23:59
etc.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
You are on the CC list for the bug.

_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to