Page MenuHomePhabricator

{{NUMBERINGROUP}} magic word
Closed, ResolvedPublic

Description

Author: artificial

Description:
To complement {{NUMBEROFADMINS}}, how about a magic word for the number of users in each group?

For example: {{USERSINGROUP:sysops}}, {{USERSINGROUP:bureaucrats}}, {{USERSINGROUP:bots}}.

It's very similar to {{PAGESINNAMESPACE}}, and saves having to create separate magic words (or manually updated templates) for each case. For example, with the new rollback group on Wikipedia, User:Gurch created the {{NUMBEROFROLLBACKERS}} template (http://en.wikipedia.org/wiki/Template:NUMBEROFROLLBACKERS) to implement a count manually (which is what inspired me to post this idea), but templates are always a slightly awkward way of doing it, since they either need a bot or a manual update, and updating them wastes revisions in the database. A nice simple magic word would be perfect.

I was wondering what the overhead of such a magic word would be, but I don't think it would be too much at all; PAGESINNAMESPACE isn't enabled on Wikipedia because it requires a run of every page in the database, but NUMBEROFADMINS is, because it only runs through the much smaller table of group assignments, rather than the table of all users.

Good idea/stupid idea? :)


Version: unspecified
Severity: enhancement

Details

Reference
bz12632

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 21 2014, 10:01 PM
bzimport set Reference to bz12632.
bzimport added a subscriber: Unknown Object (MLST).

ayg wrote:

This would require tracking all groups; currently it's hard-coded to only track admins. NUMBEROFADMINS does not scan the user_groups table. That doesn't scale. Rather, it retrieves a column from the one-row site_stats table, which contains a fixed set of info (number of pages, number of articles, number of users, number of admins, ...). Probably this doesn't scale to arbitrary groups, so we might need a new table for this.

ayg wrote:

Also, {{NUMBERINGROUP}} is a clearer name. Or we could give an optional parameter to {{NUMBEROFUSERS}} or something. {{USERSINGROUP}} suggests it would give a list.

artificial wrote:

(Ooops, lol, I've just realised the alternate interpretation of the name I suggested: "USER SIN GROUP", reminds me of that "Admin is traitor" thing.)

I'm not terribly familiar with MediaWiki's internals, but there can't be more than about 2,500 group assignments even on all of the English wikipedia; would a table scan really affect the servers?

A whole new table, if it had to be used, would be a nuisance because it's an extra thing to have to manage and update. It would probably only need to be done in one place though, rebuilding the table info with a single SELECT/GROUP BY query in the user rights change code.

ayg wrote:

It's true that you'd just have to scan a few hundred to a couple thousand index leafs. I don't know if that would be acceptable or not. Even on the toolserver it manages to run in <10 ms, so probably it would be <<1 ms on the real servers. Regardless, it might not do so well when we accumulate tens or hundreds of thousands of rollbackers in a couple of years. It's best to do it right to begin with, all around, if it's to be done.