TobiasTheCommie Wrote:Yes.
oh goodie

Gonna do some testing then and maybe push an update
Martijn
Team-XBMC Joined: Jul 2011 Reputation: 114 Location: Dawn of time |
2012-01-27 02:12
Post: #21
TobiasTheCommie Wrote:Yes. oh goodie ![]() Gonna do some testing then and maybe push an update
Always read the XBMC online-manual, FAQ and search the forums before posting. Do NOT e-mail Team-XBMC members asking for support. Read/follow the forum rules. For troubleshooting and bug reporting, make sure you read this first For your mediacenter artwork go to ![]() |
| find quote |
TobiasTheCommie
Skilled Python Coder Posts: 621 Joined: Apr 2008 Reputation: 3 |
2012-01-27 02:20
Post: #22
Martijn Wrote:oh goodie In that case, this is what we sent in the PR Quote:hg clone http://hg.tobiasussing.dk/hgweb.cgi/cachexbmc/ script.common.plugin.cache -b release -r fabfccb1731a That will give you the exact same code as what will land in the Eden repo. |
| find quote |
Martijn
Team-XBMC Joined: Jul 2011 Reputation: 114 Location: Dawn of time |
2012-01-27 02:23
Post: #23
TobiasTheCommie Wrote:In that case, this is what we sent in the PR thx ![]() But because i was gonna wait till tomorrow because now i'm emptying a case of beer and watching a movie i would have the correct version anyway
Always read the XBMC online-manual, FAQ and search the forums before posting. Do NOT e-mail Team-XBMC members asking for support. Read/follow the forum rules. For troubleshooting and bug reporting, make sure you read this first For your mediacenter artwork go to ![]() |
| find quote |
TobiasTheCommie
Skilled Python Coder Posts: 621 Joined: Apr 2008 Reputation: 3 |
2012-01-27 02:28
Post: #24
Heh, enjoy
|
| find quote |
Jarviss
Junior Member Posts: 36 Joined: Aug 2011 Reputation: 0 |
2012-02-01 15:37
Post: #25
Would be anything I could do to make this install correctly. I get update failed evrytime I try update or manually install.
|
| find quote |
TobiasTheCommie
Skilled Python Coder Posts: 621 Joined: Apr 2008 Reputation: 3 |
2012-02-01 15:54
Post: #26
Not that i know off. Maybe there would be something in an xbmc debug log.
|
| find quote |
Bighampton
Junior Member Posts: 3 Joined: Feb 2012 Reputation: 0 Location: Seattle |
2012-02-02 19:11
Post: #27
TobiasTheCommie,
I think a common plugin cache is an outstanding idea, but I'm puzzled why you decided to roll your own instead of using an existing package that has a proven track record (such as Beaker)? |
| find quote |
TobiasTheCommie
Skilled Python Coder Posts: 621 Joined: Apr 2008 Reputation: 3 |
2012-02-02 20:34
Post: #28
Bighampton Wrote:TobiasTheCommie, Never heard of Beaker. This was mostly just made to speedup the YouTube plugin. Then when we started making BlipTV it became apparent that it was in even more need for a speedup than YouTube. So we separated it out and generalized it a bit. We also needed something that was thread-safe(for the downloader). |
| find quote |
Popeye
Posting Freak Joined: Aug 2009 Reputation: 25 Location: Sweden |
2012-02-03 11:15
Post: #29
I'm to much of a beginner to fully understand what the common cache manages to store. I need to cache xml pages of a few 1000 lines for a variable amount of time, is the common cache something for me then?
|
| find quote |
TobiasTheCommie
Skilled Python Coder Posts: 621 Joined: Apr 2008 Reputation: 3 |
2012-02-03 13:29
Post: #30
Popeye Wrote:I'm to much of a beginner to fully understand what the common cache manages to store. I need to cache xml pages of a few 1000 lines for a variable amount of time, is the common cache something for me then?http://wiki.xbmc.org/index.php?title=Add....2Aargs.29 The cache stores whatever your function returns. If you have a function like: def getXML(): return [ "xml" ] then result = cache.cacheFunction(getXML) will store [ "xml"] Whatever your getXML function returns, will be cached. The next call to result = cache.cacheFunction(getXML) within the timeout you have defined(or 24 hours) will NOT call your getXML function, but will just return the stored cache. But i suggest you read the wiki. |
| find quote |