Subscribe via RSS
Follow me on Twitter
Tweets by gaiustech-
Recent Posts
Archives
- September 2021
- March 2020
- December 2019
- August 2019
- February 2019
- December 2018
- November 2018
- September 2018
- August 2018
- July 2018
- June 2018
- May 2018
- December 2017
- August 2017
- August 2016
- June 2016
- September 2015
- January 2015
- December 2014
- December 2013
- August 2013
- July 2013
- June 2013
- April 2013
- November 2012
- July 2012
- June 2012
- February 2012
- January 2012
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- January 2011
- November 2010
- October 2010
- September 2010
Links
- OCI*ML Oracle bindings for the OCaml language
Monthly Archives: August 2011
Database Recovery: How Not To Do It
I’ve just applied over 30 terabytes of archived redo logs to an Oracle database. Surely this must be a world record!
Posted in Oracle
Leave a comment
Putting it all together: PubSub for OCaml with Coherence
In this post I will present a simple PubSub system for OCaml using the Continuous Query feature of Oracle Coherence. The code is all on GitHub. For this example, we will have three subscribers interested in different kinds of messages: … Continue reading
Queries in Coherence with OCaml
Well, it looks like I posted the last entry too soon, as I can get close to what I want to do with the PofExtractor available from Coherence 3.5 onwards, without needing to write any Java (ugh!). It is a … Continue reading
Posted in C++, Coherence, COHML, Ocaml, Operation Foothold
Leave a comment
Custom classes in Coherence with OCaml
I have not updated in a little while as I have been busily (re)learning C++ in my already-scarce free time. Seems there is a lot of work around for C++ types, and it’s always good to have options. Anyway, on … Continue reading
Posted in C++, Coherence, COHML, Ocaml, Operation Foothold
Leave a comment
Updated: MapListener example
A slight update to yesterday’s example listener.ml supporting named callback functions: I am not entirely comfortable with this as a problem in the names can’t be detected at compile time – tho’ at runtime there is a check that the … Continue reading
Posted in Coherence, COHML, Ocaml, Operation Foothold
Leave a comment
OCaml binding for Coherence MapListener
In this post I will demonstrate triggering the execution of OCaml code by events within the Coherence grid. The full code is on GitHub, but at the OCaml level it is designed to be very simple†, using the callback mechanism. … Continue reading
Posted in C++, Coherence, COHML, Ocaml, Operation Foothold
7 Comments
OCaml bindings for Coherence (without SWIG)
I am much happier with my second attempt at an OCaml binding for Oracle Coherence. This way is easier to build, easier to use, and I could reuse all of the C++ code from my first attempt. See the code … Continue reading
Posted in C++, Coherence, COHML, Ocaml, Operation Foothold
Leave a comment
OCaml bindings for Coherence with SWIG
Way back in the day, I did some work programming in C++. But to be honest, I never really learnt C++; I learnt MFC and enough ATL to do COM. And then I decided to focus on Oracle and left … Continue reading
Posted in C++, Coherence, COHML, Ocaml, Operation Foothold, Oracle
3 Comments