Re: [DISCUSSION] jlibaio proposal

2015-07-13 Thread Clebert Suconic
forgot the link: https://github.com/clebertsuconic/activemq-artemis/tree/master/artemis-native On Mon, Jul 13, 2015 at 4:10 PM, Clebert Suconic wrote: > I have this sub-project within ActiveMQ artemis, that is becoming more > independent and could be reused among other projects. > &

[DISCUSSION] jlibaio proposal

2015-07-13 Thread Clebert Suconic
I have this sub-project within ActiveMQ artemis, that is becoming more independent and could be reused among other projects. It's a thin layer in top of Linux libaio. You have method to submit write, submit read, allocate byte buffers, and they are going straight to DMA on Linux Kernel. Right n

[beanutils] Fluent Instrospector as default?

2014-12-16 Thread Clebert Suconic
I have posted an user question on the user's forum about synchronization... but I mixed it with a dev question: http://mail-archives.apache.org/mod_mbox/commons-user/201412.mbox/%3cCAKF+bspXgnE+zLjpg-9Fp+hDcAqTWEAERM=7getaut4lthe...@mail.gmail.com%3e Why not make FluentIntrospector default on Bean

Can someone delete an user comment please?

2007-08-17 Thread Clebert Suconic
https://issues.apache.org/jira/browse/BEANUTILS-291 This user messed things up here, asking JBoss question on the wrong place.. If someone with admin privileges could please clean this up... Thanks, Clebert - To unsubscribe

Re: Fwd: Circular Reference on WeakHashMap

2007-08-07 Thread Clebert Suconic
ied before 1.8 final? Clebert Clebert Suconic wrote: > should the second sample on the wiki page not contain > SoftReference reference = new SoftReference(x); instead of > WeakReference reference = new WeakReference(x); ? Yep! :-) Jus

Re: Fwd: Circular Reference on WeakHashMap

2007-08-07 Thread Clebert Suconic
wrote: On 8/7/07, Clebert Suconic <[EMAIL PROTECTED]> wrote: > Yes, but that reference can be garbage collected - so would have to > handle that as well. In this instance each AbstractConverter > implementation only ever returns the same value - so I think its > simpler t

Re: Fwd: Circular Reference on WeakHashMap

2007-08-07 Thread Clebert Suconic
> should the second sample on the wiki page not contain > SoftReference reference = new SoftReference(x); instead of > WeakReference reference = new WeakReference(x); ? Yep! :-) Just fixed it. Thanks! Clebert - To unsubscrib

Re: Fwd: Circular Reference on WeakHashMap

2007-08-06 Thread Clebert Suconic
i.jsp?page=ClassLeakage Niall Pemberton wrote: On 8/7/07, Clebert Suconic <[EMAIL PROTECTED]> wrote: > Yes it does (thru' AbstractConveter which it extends) - I can remove > that reference completely by just making the getDefaultType() method > abstract and having each im

Re: Fwd: Circular Reference on WeakHashMap

2007-08-06 Thread Clebert Suconic
<[EMAIL PROTECTED]> Date: Aug 7, 2007 2:36 AM Subject: Re: Circular Reference on WeakHashMap To: Clebert Suconic <[EMAIL PROTECTED]> On 8/7/07, Clebert Suconic <[EMAIL PROTECTED]> wrote: The solution seems simpler than I thought though... After looking at the report again..

Re: Circular Reference on WeakHashMap

2007-08-06 Thread Clebert Suconic
. Niall Pemberton wrote: On 8/6/07, Clebert Suconic <[EMAIL PROTECTED]> wrote: I have been investigating WeakHashMaps on BeanUtils 1.8 as part of a investigation on this: http://jira.jboss.com/jira/browse/JBAS-2299 Thanks for getting back to us so quickly. (Which is not actually an issu

Re: Circular Reference on WeakHashMap

2007-08-06 Thread Clebert Suconic
doing it through this forum if you like. Niall Pemberton wrote: On 8/6/07, Clebert Suconic <[EMAIL PROTECTED]> wrote: I have been investigating WeakHashMaps on BeanUtils 1.8 as part of a investigation on this: http://jira.jboss.com/jira/browse/JBAS-2299 Thanks for getting back t

Circular Reference on WeakHashMap

2007-08-06 Thread Clebert Suconic
a new ClassLoader, and validate if it was released at the end after some exercizing some code on this caching. You will probably need to fill your memory almost to 100% on the test as SoftReference are only gone when the memory is low. Clebert Suconic -