Re: [Twisted-Python] is there way to baypass value limit of 64kb in twisted.protocols.amp [SOLVED]

2009-12-01 Thread Maris Ruskulis
Glyph Lefkowitz wrote: On Nov 30, 2009, at 2:10 PM, MārisR wrote: I'm currently trying to figure out, how to bypass amp value limit of 64kb. First tought was to split string into chunks <64kb, then join before processing. Problem is, how to dinamicaly generate amp.Command argument list. Ma

Re: [Twisted-Python] is there way to baypass value limit of 64kb in twisted.protocols.amp

2009-11-30 Thread Glyph Lefkowitz
On Nov 30, 2009, at 2:10 PM, MārisR wrote: > I'm currently trying to figure out, how to bypass amp value limit of 64kb. > First tought was to split string into chunks <64kb, then join before > processing. Problem is, how to dinamicaly generate amp.Command argument list. > Maybe there is other w

[Twisted-Python] is there way to baypass value limit of 64kb in twisted.protocols.amp

2009-11-30 Thread MārisR
Hello! I'm currently trying to figure out, how to bypass amp value limit of 64kb. First tought was to split string into chunks <64kb, then join before processing. Problem is, how to dinamicaly generate amp.Command argument list. Maybe there is other well known method how to achieve this? Thank Y