A feature request.  Right now I might have a case class like so:

case class User(firstname: String, lastname: String)

which serializes to something like:

{ "firstname" : "Harry", "lastname" : "Heymann" }

but I happen to be serializing a lot of People and I hate to use 17
bytes per item for the field names.  I'd really prefer to only use 4:

{ "fn" : "Harry", "ln" : "Heymann" }

It seems to me that through clever use of an implicit parameter I
ought to be pass in a Map of field name -> shortened names.  Thoughts?

-harryh

-- 
You received this message because you are subscribed to the Google Groups 
"Lift" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en.

Reply via email to