Hi all
I'm looking for people interested in attending the upcoming 26th Chaos Communication Congress (Berlin, Dec 27-30, http://events.ccc.de/congress/2009/) and being available for questions and discussions about any aspect of interacting with Wikipedia and/or MediaWiki in code. I'm trying to organize a "hack the wiki" - The idea is to have a place where people interested in contributing to the Wikipedia/MediaWiki user experience on the technical level can discuss their ideas and get help implementing them - be it by writing extensions, toolserver tools, javasacript gadgets, api-based bots, or whatever.
The background is that there has been some criticism from the German hacker community of the "wiki 2000" experience Wikipedia supposedly offers. There's quite a bit of energy directed at hacking up alternative ways to access and use Wikipedia content there . I'd like to channel some of that drive into improvements usable directly in medaiwiki or on the wikimedia sites.
Note that this my personal pet project, nothing official by WMDE. At least, not yet. If there are enough people interested, I hope we can get support for things like travel cost from WMDE. So please let me know if you are interested,so I can get things organized.
Oh, and: that congress is great fun, with tons of cool blinking stuff and thousands of geeks - well worth going to in any case :)
Regards Daniel
Hi -
I'm debugging my extension code against potential deadlock conditions, and am having a problem: when I request 2 pages simultaneously in different firefox tabs, judging by the wfDebug output it seems like the second page request blocks at session_start() and waits until the first page is done. Is it supposed to do this? Does it depend on my configuration?
Thanks - Lee Worden McMaster University
-----Original Message----- From: wikitech-l-bounces@lists.wikimedia.org [mailto:wikitech-l-bounces@lists.wikimedia.org] On Behalf Of lee worden Sent: 04 December 2009 19:14 To: Wikimedia developers Subject: [Wikitech-l] sessions in parallel
Hi -
I'm debugging my extension code against potential deadlock conditions, and am having a problem: when I request 2 pages simultaneously in different firefox tabs, judging by the wfDebug output it seems like the second page request blocks at session_start() and waits until the first page is done. Is it supposed to do this? Does it depend on my configuration?
Thanks - Lee Worden McMaster University
If I remember correctly, the PHP files session handler has to acquire an exclusive lock on the session file in session_start(). Thus preventing your second request until the first is complete.
Jared
-----Original Message----- From: wikitech-l-bounces@lists.wikimedia.org [mailto:wikitech-l-bounces@lists.wikimedia.org] On Behalf Of lee worden Sent: 04 December 2009 19:14 To: Wikimedia developers Subject: [Wikitech-l] sessions in parallel
Hi -
I'm debugging my extension code against potential deadlock conditions, and am having a problem: when I request 2 pages simultaneously in different firefox tabs, judging by the wfDebug output it seems like the second page request blocks at session_start() and waits until the first page is done. Is it supposed to do this? Does it depend on my configuration?
Thanks - Lee Worden McMaster University
If I remember correctly, the PHP files session handler has to acquire an exclusive lock on the session file in session_start(). Thus preventing your second request until the first is complete.
Jared
Thanks! I have to log in as 2 people from 2 different browsers, I guess. LW
-----Original Message----- From: wikitech-l-bounces@lists.wikimedia.org [mailto:wikitech-l-bounces@lists.wikimedia.org] On Behalf Of lee worden Sent: 06 December 2009 23:26 To: Wikimedia developers Subject: Re: [Wikitech-l] sessions in parallel
-----Original Message----- From: wikitech-l-bounces@lists.wikimedia.org [mailto:wikitech-l-bounces@lists.wikimedia.org] On Behalf Of lee worden Sent: 04 December 2009 19:14 To: Wikimedia developers Subject: [Wikitech-l] sessions in parallel
Hi -
I'm debugging my extension code against potential deadlock conditions, and am having a problem: when I request 2 pages simultaneously in different firefox tabs, judging by the wfDebug output it seems like the second page request blocks at session_start() and waits until the first page is done. Is it supposed to do this? Does it depend on my configuration?
Thanks - Lee Worden McMaster University
If I remember correctly, the PHP files session handler has
to acquire
an exclusive lock on the session file in session_start(). Thus preventing your second request until the first is complete.
Jared
Thanks! I have to log in as 2 people from 2 different browsers, I guess. LW
Or configure MediaWiki & PHP to use something like MemCache.
http://www.mediawiki.org/wiki/Manual:$wgSessionsInMemcached
Jared
Hi -
I'm debugging my extension code against potential deadlock conditions, and am having a problem: when I request 2 pages simultaneously in different firefox tabs, judging by the wfDebug output it seems like the second page request blocks at session_start() and waits until the first page is done. Is it supposed to do this? Does it depend on my configuration?
Thanks - Lee Worden McMaster University
If I remember correctly, the PHP files session handler has
to acquire
an exclusive lock on the session file in session_start(). Thus preventing your second request until the first is complete.
Jared
Thanks! I have to log in as 2 people from 2 different browsers, I guess. LW
Or configure MediaWiki & PHP to use something like MemCache.
http://www.mediawiki.org/wiki/Manual:$wgSessionsInMemcached
Jared
Noted, thanks. Lee
wikitech-l@lists.wikimedia.org