How can I disable the memcache client in ActiveSupport

Since Rails 2.1, the memcache-client gem has been bundled with
ActiveSupport.

I have an app. which has a customized version of the memcache-client
code, and I would like to disable the built-in memached-client.

How can I go about doing that?

Thanks,
Wes

SOLUTION:

I forced my custom version to be loaded by using a more explicit
‘require’ statement and this overrode the built-in memcache client.

Wes