OpenTracing support for memcached plugin?

I was looking into opentracing support for memcached and getting it to work with Play.

Now, this is the project I found: https://github.com/opentracing-contrib/java-memcached-client

And while I could just instrument things on my own with a wrapper class around something like SyncCacheApi, I was wondering if it’s possible to add instrumentation with the project?

Hi @KoenDG,

It looks like the way to go here is to have your own implementation of *CacheApi using this client. Or maybe contribute to some existing module that integrates Play and memcached so that is possible to activate opentracing.

Best.

Yeah I figured as much.

What I did for testing is instrument a wrapper class for SyncCacheApi that I already had.