Ben Mabey
Ben Mabey
Cool! BTW, I decided to change the name of the project to `clj-cache` to be more inline with other clojure project names (e.g. `clj-time`, `clj-file-utils`, etc).. and so I could...
One more thing... I wasn't able to run the tests but it looks like you may have a bug here: https://github.com/Raynes/cache-dot-clj/blob/masai/masai/src/cache_dot_clj/masai.clj#L40 Shouldn't `s` be passed into `prefix` like so: `(prefix...
@dhango `ipywidgets` rely on the python kernel backend being present so they won't with the `knowledge_repo` the way you are hoping (I think). The best you would get is the...
Thanks for the tip! I think being able to toggle it would be useful and will consider doing a patch for that in the future. For now the current functionality...
Sorry the config issues got you stumped. The connection string for a postgres DB should be of the form: ``` postgres://PGUSER:PGPASSWORD@PGHOST:PORT/DB_NAME ``` For example: ``` postgres://foo:[email protected]:5432/stuff ```
Per @scizo's suggestion in #23 the db update/migration should not happen automatically.
Hi @andersy005, in this case I think the problem is that you need to call the `provenance` decorator... so instead of `@p.provenance` it should be `@p.provenance()`. More generally, I haven't...
@andersy005 The serializers that you wrote look good. For context, `pickle` (well, `cloudpickle`) is still being used to compute the hash of the object that is used as a key...
Looks like a problem with the implementation/design. I'll have to look more closely how `abspath` is being used... but I think the end solution will probably adding a `_filename` method...
I pushed a fix for this.. I think. I didn't write an automated test or even test it manually but it should work. :) Let me know if it solves...