Arc Forumnew | comments | leaders | submitlogin
1 point by Pauan 5111 days ago | link | parent

"I think I want a persisted macro for declaring data structures so that mutations to them will translate to requests to a riak server. (wiki.basho.com) Outsource storage to erlang which does it well."

Wait wait wait. Are you perhaps desiring my message passing system? :) That should allow you to declare a data type that does something special when changed.



1 point by akkartik 5111 days ago | link

Is the code published? I think I missed that.

-----

1 point by Pauan 5111 days ago | link

No, but it shouldn't be too difficult to add it to Anarki/pgArc/wart. In fact, I described a partial implementation (in Arc itself) here:

http://arclanguage.org/item?id=14255

Basically, it'd require changing things like (table) and (cons) so they return annotated functions, and then changing the built-ins (like keys, vals, car, etc.) to use the annotated functions. That's what that post is about: describing the core functions (keys, car, etc.) in Arc itself.

Oh, yeah, and change apply/eval so when they see something with type 'table or 'cons, they use the annotated functions too. I should be able to add this to py-arc without too much trouble.

-----