Search the web
Sign In
New User? Sign Up
mt-dev · Movable Type Developers
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1132 - 1161 of 2112   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1132
http://www.perl.com/pub/a/2007/03/01/perl-6-parameter-passing.html -- djacobs@... (646) 244 9910 http://hello.typepad.com...
David Jacobs
pdx_davidj
Offline Send Email
Mar 2, 2007
2:02 am
1133
I know Athena will have this along with other Data::ObjectDriver goodies, but in the meantime, has anyone here ever tried hacking memcache support into...
Andy Yaco-Mink
yacomink
Offline Send Email
Mar 2, 2007
5:04 pm
1134
Memcache is surprisingly easy to setup and use, so it wouldn't be *that* difficult for some queries. I encourage everyone to play around with memcached -...
Byrne Reese
byrnereese
Offline Send Email
Mar 2, 2007
6:30 pm
1135
IMing with Jay about Bootstrap got me thinking. tcpperl(*) is a package that lets command line scripts act as servers. Apache (or other httpd processes) can...
David Jacobs
pdx_davidj
Offline Send Email
Mar 2, 2007
9:07 pm
1136
I've written a series of plugins for my MT implementation, but I'm running into a situation right now where I need to disable and enable my plugins on a blog...
Steve Kallestad
s_kallestad
Offline Send Email
Mar 2, 2007
11:20 pm
1137
So based on your experience with memcached and familiarity with MT, where would calls out to memcached go? I haven't looked over the memcached API and don't...
Timothy Appnel
tappnel
Offline Send Email
Mar 3, 2007
1:48 am
1138
It really depends what you want to cache (obviously). Though I'd love to be able to say the opposite :), what D::OD provides re: memcached isn't really that...
Benjamin Trott
btrott
Offline Send Email
Mar 3, 2007
4:29 am
1139
... You know... After I don't know how long I've been working on developing plugins. I just barely found this page: ...
Steve Kallestad
s_kallestad
Offline Send Email
Mar 3, 2007
6:43 am
1140
I put calls to memcached in the data access layer. Here is my basic structure: * Right before I load a single obj from the DB I check the cache to see...
Byrne Reese
byrnereese
Offline Send Email
Mar 3, 2007
7:03 am
1141
I have a client that is (now) using RebiuldQueue, and it's working well. The only problem is making sure that the worker daemons continue to run so that pages...
Chad Everett
jayseae
Offline Send Email
Mar 3, 2007
2:19 pm
1142
This is a great explanation, Byrne... one note, though, about a ... memcached supports a "get_multi" command: given a list of keys, it returns values for the...
Benjamin Trott
btrott
Offline Send Email
Mar 3, 2007
5:22 pm
1143
I think "ps -C RebuildQueue.pl" should give you a list of just those daemons, sans-path and argument, or an empty list if none are running. Also, if you need...
Andy Yaco-Mink
yacomink
Offline Send Email
Mar 3, 2007
5:23 pm
1144
Intriguing, but its not clear to me how this would be an improvement over existing options. From what I gather, this would mean a "custom daemon" which shared...
Timothy Appnel
tappnel
Offline Send Email
Mar 3, 2007
5:24 pm
1145
... I thought RQ has a feature where you can run it via cron and it will check if its already running and if its not it will start one. Perhaps I misunderstood...
Timothy Appnel
tappnel
Offline Send Email
Mar 3, 2007
5:29 pm
1146
Thank you for the correction, Ben. After writing this it occurred to me that these notes really should be collected into a blog post/tutorial. So if there are...
Byrne Reese
byrnereese
Offline Send Email
Mar 3, 2007
6:03 pm
1147
... Yes why is almost all of the documentation for memcached, perlbal and mogilefs in plain text rather then POD? I got burned like the noob I was because I...
Timothy Appnel
tappnel
Offline Send Email
Mar 3, 2007
6:30 pm
1148
Thanks, Andy, but I'm either not running the command correctly or it isn't working as I expect. The first problem is that I'm not getting any results, yet I...
Chad Everett
jayseae
Offline Send Email
Mar 3, 2007
7:20 pm
1149
... I don't recall what you said in regards to your server (dedicated vs. shared) but one shared host I used allowed "ps" commands while another does not....
Michael De Soto
laylacast
Online Now Send Email
Mar 3, 2007
7:25 pm
1150
we run /usr/bin/screen -mdS /usr/bin/perl <RebuildQueue> ... -- djacobs@... (646) 244 9910 http://hello.typepad.com...
David Jacobs
pdx_davidj
Offline Send Email
Mar 3, 2007
7:33 pm
1151
... A tutorial sounds like a great idea. These figurative examples have been quite helpful. It would complete the picture (at least for me), if the tutorial...
Mark Carey
bsakamano
Offline Send Email
Mar 3, 2007
8:18 pm
1152
It does have such a feature, but it, uh, doesn't seem to work. At least not reliably. It's using MT->_lock as the mechanism for determining what is running,...
Chad Everett
jayseae
Offline Send Email
Mar 3, 2007
8:26 pm
1153
I've confirmed this behavior, but I have to run for now, so I can't dig into it right this moment. Anyone with a better understanding of how the lock ...
Chad Everett
jayseae
Offline Send Email
Mar 3, 2007
9:43 pm
1154
It's dedicated, and ps works, but the "ps -Af" command (used in restart_rebiuld_queue, presumably to list a detailed command) does not work. From:...
Chad Everett
jayseae
Offline Send Email
Mar 3, 2007
9:56 pm
1155
I had to do a bit of surgery to restart_rebuild_queue, but I think that I have it working adequately now, so if it helps anyone, here are the changes that I...
Chad Everett
jayseae
Offline Send Email
Mar 4, 2007
3:54 pm
1156
... Dumb question then: Is this one statement where DOD will get the IDs and then hit memcached for the actual objects or am I responsible for getting the IDs...
Timothy Appnel
tappnel
Offline Send Email
Mar 5, 2007
3:00 am
1157
What Ben was saying is that in the first query you fetch a list of IDs. In the second query you tell D::OD, "get me all records corresponding the following...
Byrne Reese
byrnereese
Offline Send Email
Mar 5, 2007
3:04 am
1158
... Right. I follow this. Am I writing 2 statements against the DOD API or 1? That is what I was trying to ask. <tim/> -- Timothy Appnel Appnel Solutions ...
Timothy Appnel
tappnel
Offline Send Email
Mar 5, 2007
3:11 am
1159
... Only 1--all of this happens under the hood in D::OD. You ask for a set of objects--that gets translated into the 2 steps (get a list of PKs, then get the...
Benjamin Trott
btrott
Offline Send Email
Mar 5, 2007
4:05 am
1160
... nice. thanks for clarifying. <tim/> -- Timothy Appnel Appnel Solutions http://appnel.com/ Blogcast / Powerful blogging systems made easy ...
Timothy Appnel
tappnel
Offline Send Email
Mar 5, 2007
4:12 am
1161
... I think so, yes. ... Very little startup time, #1, and I also think fcgid/fast_cgi still have some memory leaks. Basically, I think this introduces the...
David Jacobs
pdx_davidj
Offline Send Email
Mar 5, 2007
3:49 pm
Messages 1132 - 1161 of 2112   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help