Jaakko Pallari

Results 9 comments of Jaakko Pallari

The current memoization implementation seems to be using `ConcurrentHashMap` for memorizing results. It's safe to use it in a multi-threaded environment, but there are situations where the memoized function might...

As an example, we could use a versioning scheme like this: ``` $MAJOR.$MINOR.$PATCH-k$KAFKA ``` where: * `MAJOR`, `MINOR`, and `PATCH` describe the SKC versioning * `KAFKA` describes the Kafka compatible...

I think we also need to figure out how far are we going to extend Kafka support.

The TypeTaggedTrait is there to add the type tag derived from the extending class as a value. This allows preserving the type information in the runtime that would be otherwise...

It's there so that the actors that receive those records (in this case the producer actor), can pattern match on only `ProducerRecords[MyKey, MyString]` and not on any other `ProducerRecords` with...

Hi! Sorry for the late response. Yes, that seems to be the case: updating the config with two different clusters would create distinct contexts, but updating the config with a...

Hey Hugo! Any reason why you manually update it instead of using the `--role-arn` flag with `update-kubeconfig`? ``` aws eks update-kubeconfig --name hugoprudente-cluster-12 --role-arn arn:aws:iam::004815162342:role/Admin ``` It seems that you...

I have an export in my project: ```typescript export const foobar = { ... } ``` That I import in a test file (`foobar.test.ts`): ```typescript import { foobar } from...

The problem is that [adaptive fill](http://www.gnu.org/software/emacs/manual/html_node/emacs/Adaptive-Fill.html#Adaptive-Fill) doesn't work properly. I don't know what breaks it. You can try setting the fill prefix manually with 'set-fill-prefix (C-x .)