Displaying 20 results from an estimated 300 matches similar to: "ActiveResource cache using memcache-client"
2016 Jan 08
0
[PATCH] xfs: Add support for v3 directories
> Besides supporting newer version of xfs file system, this patch also
> does some code refactoring and fix completely broken listing and
> searching on v2-3 node directories.
>
> Signed-off-by: Paulo Alcantara <pcacjr at zytor.com>
> ---
> core/fs/xfs/xfs.c | 19 +--
> core/fs/xfs/xfs.h | 155 +++++++++++++++++++-----
> core/fs/xfs/xfs_dinode.c
2016 Jan 15
0
[PATCH] xfs: Add support for v3 directories
On Jan 15, 2016 5:46 PM, "Gene Cumm" <gene.cumm at gmail.com> wrote:
>
> On Jan 8, 2016 8:09 AM, "Ady via Syslinux" <syslinux at zytor.com> wrote:
> >
> >
> > > Besides supporting newer version of xfs file system, this patch also
> > > does some code refactoring and fix completely broken listing and
> > > searching on
2006 Oct 11
0
storing typo sessions in memcache
I was trying to use memcache for session storage in Typo. And i got
following error, when user logs into the system.
Session ID:
Cookie set: is_admin=yes; path=/
Redirected to http://foobar.com:8002/admin/content
Completed in 0.02042 (48 reqs/sec) | DB: 0.00236 (11%) | 302 Found
[http://foobar.com/accounts/login]
undefined class/module User
2006 Jul 21
2
mongrel, memcache and sessions
Hi,
I''m using mongrel-0.3.13.3 with memcache-client-1.0.3 for storing sessions.
It was working fine with actionpack-1.12.0, but when I upgraded to
actionpack-1.12.3, I started getting a "can''t convert String into Hash"
error from memcache.rb from memcache-client.
I was able to fix it by changing the way the MemCache object was created in
2006 Jan 30
0
cached_model-1.0.1 ActiveRecords + memcache
The new version of cached_model features bug fixes and tests!
Bugs fixed:
Updating a model no longer stores associations into the cache. This
could cause strange, hard-to-debug bugs when an invalid set of
assocations was retrieved along with a cached model.
Reloading a model refreshes the cache.
When CachedModel::find can''t understand query params and a single
result is
2005 Aug 26
0
php-memcache module and Centos 3
Hi all,
I need to compile the php-memcache PECL module but it needs a php
4.3.3 version.
RHEL 3/Centos 3 provides only a php 4.3.2 but the symbol '
php_stream_pclose' is unknown. The compilation fail with :
ext/memcache/memcache.o(.text+0x7ab):/home/alain/rpm/BUILD/php-4.3.2/ext/memcache/memcache.c:386:
undefined reference to `php_stream_pclose'
Then I wonder if a guru
2007 Jan 02
1
Recommendation: Stalled Mongrel? Memcache Hates Spaces
Hi Everyone,
There''s quite a few of you who have contacted me about Mongrel suddenly stopping. After a lot of investigation, I found that the common thread between all of you is memcache and Eric Hodel''s memcache-client. People who were running this combination would have intermittent pauses and investigating the stalled mongrels showed that memcache-client was waiting for
2006 Feb 12
3
memcache-client/cached_model help
Hi -
Just downloaded and installed the memcache-client and cached_model
gems and am trying to test it out on a development setup. I added
this to my environment/development.rb
CACHE = MemCache.new :c_threshold => 10_000,
:compression => true,
:debug => true,
:namespace => ''eztrip'',
2008 May 19
0
Memcache session store
Maybe a newbie question - but I''ve been unable to find any references to
this issue. I have a current facebook app using rfacebook and working on
getting it migrated to facebooker. It currently uses memcache for session
store, and when I try to fire up the application utilizing facebooker, I
receive a session_id invalid message since the session key contains a dash.
>From what I can
2006 Mar 01
4
cached_model and memcache-client slowness
Hi there,
I''ve got a Rails app that''s a little unusual in that it maintains a
database representation of a filesystem (for an image gallery). Thus, if
the filesystem is essentially ''out of date'' then the controller''s list
action will end up invoking a model update (which involves a filesystem
scan).
I''m using sqlite3 as this app will be
2012 Dec 06
1
Documentation of Redis and Memcache Backends
Hi,
in the release notes of 2.1.9 I read that dovecot supports memcache and redis backends for
userdb/passdb authentication. This is very interesting for me and should reduce queries and database load of
our mysql servers.
My idea is to use memcache or redis in our IMAP/POP3 proxies in front of our backend servers.
So I would like to try out if it's possible to store proxy information of our
2012 Aug 08
1
Memcache and Rails - Storing String as values.
Hello all,
I have been using Memcache with my rails application to store certain
key value pair.... I am using Dalli gem for the same... So Here''s what i
do from console:
require ''dalli''
dc = Dalli::Client.new(''remoteserver:11211'')
dc.set(''example_link'', "http://www.google.com")
=> true
value =
2009 May 26
2
memcache for variables
hey,
for performance reasons i want to cache (template) variables using
memcache, making access to data easy in templates by using a simple
syntax like <%=users(2).name%>. this actually should tell the view to
load the field ''name'' from the model/table ''users'' with id=2. it first
tries memcache and if not found, loads the data from the and stores it
in
2010 Sep 08
2
Rails 2.3.9 breaks sessions with Active Record or Memcache store
A Rails 2.3.9 app with Active Record or Memcache session store will never
send the session ID cookie to a client if the client doesn''t send any HTTP
cookies in its requests. Rails integration tests didn''t catch this because
they always send the HTTP_COOKIE header, even if it''s empty.
This is a huge bug, as it can break keeping sessions on sites which don''t
set
2006 Aug 19
3
memcache-client working for anyone?
I''m at the bloody forehead stage, so I figure it''s time to ask. After
installing the robot coop''s memcache-client which everyone apparently
recommends, it refuses to work because the rails cache.rb is invoking
the read() method on the cache, which it _does not have_. Their library
has get() and put() but no read() and write() as rails expects. What
gives? Is
2006 Jan 20
2
The New Memcache ?
Hey All !
I ended up browsing to Eric Hodel''s blog the other night, and found his
entry about the new cache_model and memcache-client.
Now, it looks like it''s "officially" out in the open:
http://weblog.rubyonrails.com/articles/2006/01/20/caching-models-with-memcached
In my application, I''ve been staying away from caching my models, and
instead just doing
2009 Apr 08
3
Rails 2.3 memcache performance drop
After much effort I upgraded our fairly large Rails app from 2.1 to
2.3. After deployment yesterday I noticed an across the board
increase in response times. It seems that every call to memcache now
takes 10x longer than before. Here are some example numbers from my
development log (below), with memcache running locally. We see
similar scale of performance drop in production as well - average
2007 Oct 09
0
Fix for using memcache store in mongrel cluster
Hi,
I was having problem with disappearing sessions when storing them in
memcache and when runnning as mongrel cluster in production environment.
I''ve created a patch and it seems it''s now okay. A message to rails-core
including the link to patch <http://dev.rubyonrails.org/ticket/9823> can be
found in the group here:
2006 May 14
1
session memcache expire
hi all
how to expire session in memcache session_store
regards
--
Posted via http://www.ruby-forum.com/.
2006 Apr 19
1
session memcache
hi all
how to handle session expire time in memcache
regrads
--
Posted via http://www.ruby-forum.com/.