René's URL Explorer Experiment


Title: Vanilla Java

Open Graph Title: Vanilla Java

X Title: Vanilla Java

Opengraph URL: https://vanilla-java.github.io/

Generator: HubPress

direct link

Domain: vanilla-java.github.io


Hey, it has json ld scripts:
{
    "@context": "http://schema.org",
    "@type": "Website",
    "publisher": "Vanilla Java",
    "url": "https://vanilla-java.github.io/"
}
    

NoneIE=edge
HandheldFriendlyTrue
referrerorigin
og:site_nameVanilla Java
og:typewebsite
twitter:cardsummary
twitter:urlhttps://vanilla-java.github.io/

Links:

https://vanilla-java.github.io
https://twitter.com/PeterLawrey
https://github.com/peter-lawrey
https://feedly.com/i/subscription/feed/https://vanilla-java.github.io/rss/
Best Practices Best practices for Event Sourcing David Schmitz presented an excellent talk on what he sees as best practices in using Event Sourcing. Chronicle Software has two very different event sourcing frameworks Chronicle Microservices Framework (CMF) and Chronicle Decentr https://vanilla-java.github.io/2018/11/28/Best-practices-for-Event-Sourcing.html
https://vanilla-java.github.io/
https://vanilla-java.github.io/2018/09/04/Some-Java-oddities.html
Java Some Java oddities I was recently asked for some simple pieces of code which some unusual uses of Java. Here are some of my favourites ;) Stateless Singleton implementing an interface public enum RandomStrategy implements IntSupplier { INSTANCE; https://vanilla-java.github.io/2018/09/04/Some-Java-oddities.html
https://vanilla-java.github.io/
Network Reducing network latency A look down the rabbit hole of reducing network latency. How latency can be measured and what you can do about it in a Java application. Ping latency A tool I used regularly https://vanilla-java.github.io/2018/08/28/Reducing-network-latency.html
https://vanilla-java.github.io/
String Looking at randomness and performance for hash codes In these articles, String.hashCode() is not even a little unique and Why do I this String.hashCode() is poor, I looked at how String.hashCode() might have been made better with little https://vanilla-java.github.io/2018/08/15/Looking-at-randomness-and-performance-for-hash-codes.html
https://vanilla-java.github.io/
Why do I think String.hashCode() is poor In response to an article I wrote HERE, a recent article HERE pointed out a number of things which could have been clearer in my claim that String.hashCode() is poor. What does https://vanilla-java.github.io/2018/08/12/Why-do-I-think-Stringhash-Code-is-poor.html
https://vanilla-java.github.io/
Blockchain Making blockchains simple One of the challenges of building blockchain solutions is testing it. Chronicle Accelerate has a framework to make adding custom transactions with the state using data-driven tests. i.e. without the need to https://vanilla-java.github.io/2018/07/31/Making-blockchains-simple.html
https://vanilla-java.github.io/
Consulting Publishing tens of millions of messages per second Welcome to our first newsletter from Chronicle giving you updates on developments at Chronicle Software plus tips and case studies around how Chronicle have helped clients to maximise value from their implementation. Case https://vanilla-java.github.io/2018/07/30/Publishing-tens-of-millions-of-messages-per-second.html
https://vanilla-java.github.io/
String.hashCode() is not even a little unique Some have a misconception that a 32-bit hashCode() can be unique for even complex data. Many realise that String.hashCode() is not unique, but might not realise how bad it is. While it https://vanilla-java.github.io/2018/07/26/Stringhash-Code-is-not-even-a-little-unique.html
https://vanilla-java.github.io/
Decentralised Keeping a blockchain decentralised This article proposes a Proof of IP (PoIP) to favour diversity of IP addresses over large number of server concentrated by IP address. While blockchain solutions using Proof of Work (PoW) and Proof https://vanilla-java.github.io/2018/07/19/Keeping-a-blockchain-decentralised.html
https://vanilla-java.github.io/
Low Latency Microsecond latency Microservice Benchmarked It is common for a vendor to publish benchmarks with synthetic loads and code. However, what can be reasonably achieve in a real application? In this post, I discuss what we achieve with https://vanilla-java.github.io/2018/06/14/Microsecond-latency-Microservice-Benchmarked.html
https://vanilla-java.github.io/
Downloads Chronicle downloads exceed 6 million in a month In the last three months we have seen a significant increase in downloads of our libraries. Wider adoption of our libraries into popular frameworks appears to be driving this growth in downloads. A https://vanilla-java.github.io/2018/06/13/Chronicle-downloads-exceed-6-million-in-a-month.html
https://vanilla-java.github.io/
Blockchain High throughput Consensus When achieving consensus across a distributed network, the latency of that network is an important constraint. How can we increase throughput? How does Little’s law help? Time to consensus To achieve https://vanilla-java.github.io/2018/04/25/High-throughput-Consensus.html
https://vanilla-java.github.io/
Java Puzzles Here are some odd quiz questions in Java which might have interesting answers. Questions void arrays Which of the following doesn’t compile void[] voids = new void[1]; (1) Void[] voids = new https://vanilla-java.github.io/2018/04/20/Java-Puzzles.html
https://vanilla-java.github.io/
Block Chain When is using a Blockchain compelling I was recently asked, when is using a Blockchain really needed? IMHO the main benefit is ease of provider integration Blockchain allows providers to join a system, with a much lower barrier to https://vanilla-java.github.io/2018/04/16/When-is-using-a-Blockchain-compelling.html
https://vanilla-java.github.io/
Blockchain Blockchain Design considerations After I announced the release of Chronicle Accelerate, a high throughput blockchain solution in Java. One of the questions which came up was; What were the design considerations that went into the solution, https://vanilla-java.github.io/2018/04/03/Blockchain-Design-considerations.html
https://vanilla-java.github.io/
Blockchain Blockchain basics The key difference between blockchain and traditional databases is the level of trust needed in those running the service. With blockchain you trust the protocol, not those running it. What does a blockchain https://vanilla-java.github.io/2018/03/21/Blockchain-basics.html
https://vanilla-java.github.io/
Pet Hates StringBuffer and how hard it is to get rid of legacy code In 2006, Java 5.0 was released with StringBuilder, a more light weight and sane version of StringBuffer. The Javadoc for Java 5.0 for StringBuffer notes As of release JDK 5, this https://vanilla-java.github.io/2017/04/13/String-Buffer-and-how-hard-it-is-to-get-rid-of-legacy-code.html
https://vanilla-java.github.io/
Low Latency Object Pools revisited Object pools were popular before Java 5.0 however more efficient allocation made most of these pools a needless complication. Can a Object Pool still make sense and how fast do they need https://vanilla-java.github.io/2017/03/12/Object-Pools-revisited.html
https://vanilla-java.github.io/
Encryption Can you have encryption and low latency in Java While using encryption is slower than writing raw messages, how much slower is it and does it have to be a performance problem? In this post, I look at Chronicle Queue, with and https://vanilla-java.github.io/2017/03/03/Can-you-have-encryption-and-low-latency-in-Java.html
https://vanilla-java.github.io/
Chronicle Queue Low latency encrypted messages with Chronicle Queue Enterprise Chronicle Queue Enterprise supports replication in a cluser and system monitoring. We recently added encrypted messages and the inital results are encouraging. What did we test? This test s similar to our previous https://vanilla-java.github.io/2017/02/07/Low-latency-encrypted-messages-with-Chronicle-Queue-Enterprise.html
https://vanilla-java.github.io/
Chronicle Queue Improving percentile latencies in Chronicle Queue Compared to a year ago, we have significantly improved the throughput at which we can achieve the 99%ile (worst one in 100). What tools and tricks did we use to achieve that? https://vanilla-java.github.io/2017/02/06/Improving-percentile-latencies-in-Chronicle-Queue.html
https://vanilla-java.github.io/
Chronicle Queue Chronicle Queue storing 1 TB in virtual memory on a 128 GB machine If you use a standard JVM like the Oracle JVM, or the OpenJDK, you might find that as the heap size grows the performance of your JVM can drop as GC pause time https://vanilla-java.github.io/2017/01/27/Chronicle-Queue-storing-1-TB-in-virtual-memory-on-a-128-GB-machine.html
https://vanilla-java.github.io/
Chronicle FIX Choosing Chronicle FIX Engine Overview The FIX Trading Community web site has posted a list of common questions about FIX Engines. This page brings together our answers for these questions. For more details on Chronicle FIX Capabilities/ https://vanilla-java.github.io/2017/01/20/Choosing-Chronicle-FIX-Engine.html
https://vanilla-java.github.io/
Twitter IT experts you should follow on twitter When I read lists like this they always seem to be male dominated, so here is a list of experts I follow which isn’t. Dr Sue Black OBE UK Govt Advisor https://vanilla-java.github.io/2016/09/03/IT-experts-you-should-follow-on-twitter.html
https://vanilla-java.github.io/
Performance Why don't I get the throughput I benchmarked? In synthetic benchmarks, you can achieve a high throughput for your system by throwing lots of independant tasks/clients at it to see what the theoretical limit of your system is, however in https://vanilla-java.github.io/2016/07/23/Why-dont-I-get-the-throughput-I-benchmarked.html
https://vanilla-java.github.io/
Vanilla Javahttps://vanilla-java.github.io
Latest Postshttps://vanilla-java.github.io
Twitterhttps://twitter.com/PeterLawrey
GitHubhttps://github.com/peter-lawrey
HubPresshttps://hubpress.github.io

Viewport: width=device-width, initial-scale=1.0


URLs of crawlers that visited me.