mentabean.soliveirajr.com
MentaBean - Downloads
http://mentabean.soliveirajr.com/mtw/Page/Downloads/en/mentabean-downloads
I'm in a dialog. The confirmation message goes here. Edit comment: ( optional. Latest jar with all dependencies: mentabean-all-2.2.2.jar. Latest jar without dependencies: mentabean-2.2.2.jar. Latest sources: mentabean-sources-2.2.2.jar. Latest javadocs: mentabean-javadoc-2.2.2.jar. You can also use maven.
mentaqueue.soliveirajr.com
MentaQueue - Message Latency
http://mentaqueue.soliveirajr.com/mtw/Page/InterProcess
I'm in a dialog. The confirmation message goes here. Edit comment: ( optional. Below is the full test and the latest results in the javadoc comments:. Failed to load source code from svn: http:/ soliveirajr.com/svn/mentaqueue/trunk/src/main/java/org/mentaqueue/bench/TestMessageLatency.java.
mentaaffinity.soliveirajr.com
MentaAffinity - Binding to Same Core
http://mentaaffinity.soliveirajr.com/mtw/Page/SameCore
I'm in a dialog. The confirmation message goes here. Edit comment: ( optional. Binding To Whole Core. Binding To Same Core. Binding To Different Cores. Binding To Different Chips. Binding to the Same Core. Failed to load source code from svn: http:/ soliveirajr.com/svn/mentaaffinity/trunk/src/main/java/org/mentaaffinity/sample/BindToSameCore.java.
mentaqueue.soliveirajr.com
MentaQueue - Producer Latency
http://mentaqueue.soliveirajr.com/mtw/Page/ProducerBench
I'm in a dialog. The confirmation message goes here. Edit comment: ( optional. Below is the full test and the latest results in the javadoc comments:. Failed to load source code from svn: http:/ soliveirajr.com/svn/mentaqueue/trunk/src/main/java/org/mentaqueue/bench/TestProducerLatency.java.
mentaqueue.soliveirajr.com
MentaQueue - Project Team
http://mentaqueue.soliveirajr.com/mtw/Page/Team
I'm in a dialog. The confirmation message goes here. Edit comment: ( optional. Sergio Oliveira Jr. ( Author ) ( sergio.oliveira.jr at gmail.com ).
mentalog.soliveirajr.com
MentaLog - Performance Numbers
http://mentalog.soliveirajr.com/mtw/Page/Performance
I'm in a dialog. The confirmation message goes here. Edit comment: ( optional. Of MentaLog was used for the performance test. MentaLog is very fast. It combines memory-mapped files, asynchronous logging through a lock-free queue. To be able to log a byte buffer with 100 bytes in around 65 nanoseconds on average. Plus it produces ZERO garbage! Yes ZERO garbage even in asynchronous mode). Here is the latest results on an i7 machine: (full machine specs here. Log Messages: 1,500,000. Min Time: 37 nanos.
mentalog.soliveirajr.com
MentaLog - Avoiding Autoboxing
http://mentalog.soliveirajr.com/mtw/Page/Autoboxing
I'm in a dialog. The confirmation message goes here. Edit comment: ( optional. If you pass a primitive variable to the log method, Java will automatically convert it to the corresponding wrapper object, in a process called autoboxing. Warnlog("This is a number:", 11222); / creates garbage because of autoboxing Warn.log("This is a number:", to sb(11222) ; / garbage-free version. Because the to sb method uses a StringBuilder pool, you can use it for as many parameters as you want in your log methods.
mentabean.soliveirajr.com
MentaBean - Project Team
http://mentabean.soliveirajr.com/mtw/Page/Team/en/mentabean-project-team
I'm in a dialog. The confirmation message goes here. Edit comment: ( optional. Sergio Oliveira Jr. ( Author ) ( LinkedIn. Sergio.oliveira.jr at gmail.com ). Erico Lutzer (erico kl at yahoo.com.br).
mentabean.soliveirajr.com
MentaBean - Mapping with Proxies
http://mentabean.soliveirajr.com/mtw/Page/ProxyMapping/en/mentabean-mapping-with-proxies
I'm in a dialog. The confirmation message goes here. Edit comment: ( optional. Instead of hardcoding the names of the bean properties as a string in the mappings, MentaBean provides a proxy implementation that allows you to configure the property name through code. Therefore, if you later refactor the name of the property, you won't need to remember to change the name in the mappings too. See the example below:. In case you are curious about how this is done, take a look in the PropertiesProxy.
mentalog.soliveirajr.com
MentaLog - Colors
http://mentalog.soliveirajr.com/mtw/Page/Colors
I'm in a dialog. The confirmation message goes here. Edit comment: ( optional. If you are using a bash console or terminal, you can see a different color for each of the log levels. Here is the list of colors supported by a bash terminal:. FG BLACK=30 FG RED=31 FG GREEN=32 FG YELLOW=33 FG BLUE=34 FG VIOLET=35 FG CYAN=36 FG WHITE=37. So to change the color of a level, you can do:. Or you can pass the color code on startup for a level:. The default colors for the levels are:.