I'm using nHibernate 3.1 and ActiveRecord 3.0 and I tried following the instructions on a few websites and workflow questions and still haven't managed to get it to work, or I'm still unable to tell that it is working.
Ideally I'd like to get it to handle all the caching on it's own instead of choosing which classes to cache. If I do have to choose myself, what's the best practice? the actual information or relationships or both?
I'm currently still testing on my local solution and therefore not sure when does it actually start caching information, is it only when using large number of connections and hits or will just me loading a page should already start the cache? Is it supposed to take it time until it starts caching?
I've checked that memcache is working using the telnet connection and I could see it adding keys in the configuration manager. http://lzone.de/articles/memcached.htm
These are the web.config values that I've set:
<configSections>
<section name="memcache" type="NHibernate.Caches.MemCache.MemCacheSectionHandler, NHibernate.Caches.MemCache" />
</configSections>
<memcache>
<memcached host="192.168.1.109" port="11211" weight="1" />
</memcache>
<config>
<add key="hibernate.cache.provider_class" value="NHibernate.Caches.MemCache.MemCacheProvider,NHibernate.Caches.MemCache" /><add key="cache.use_second_level_cache" value="true" />
<add key="cache.use_query_cache" value="true" />
</config>
set my class to have initilize with: Cache=CacheEnum.ReadWrite
is it possible it may be a mismatch with versions? memcached manager v1.0.3.0 when i go to status in memcached manager it says Version 1.2.6
and in my application bin folder the dll versions are: NHibernate.Caches.MemCache.dll3.1.0.4000 ICSharpCode.SharpZipLib.dll v0.84.0.0 Memcached.ClientLibrary.dll v1.0.0.0
when I go to generate configuration it spits out an ip address using tcpip 6 even though i disabled it from the network connection list. could that be an issue?
<enyim.com>
<memcached>
<servers>
<add address="fe80::142b:1614:3f57:fe92%11" port="11211" />
</servers>
<socketPool minPoolSize="10" maxPoolSize="100" connectionTimeout="00:00:05" deadTimeout="00:02:00" />
</memcached>
</enyim.com>
in the memcached manager in the status there is connections set to 22 but the item count, total items, gets, sets, hits, are all set to 0.
I tried syscache and used the configuration advised on Castle Project's site removing the memcache configuration: http://www.castleproject.org/activerecord/documentation/trunk/advanced/secondLevelCache.html
added to web.config
<add key="hibernate.cache.provider_class" value="NHibernate.Caches.SysCache.SysCacheProvider,NHibernate.Caches.SysCache" />
<add key="relativeExpiration" value="300" />
added Cache=CacheEnum.ReadWrite to my class again. I'd really like to be able to just let it cache whatever it can on it's own. That would be ideal.
any other tips would be appreciated.
Thanks in advance.