From: Mike P. <mi...@sy...> - 2015-04-30 18:03:18
|
Be aware that it is not only not order-preserving, but also will not keep duplicates. s.p = [o1, o2, o2] -> <s> <p> "o1" . <s> <p> "o2" . On Thu, Apr 30, 2015 at 11:43 AM, Jack Park <jac...@gm...> wrote: > Thanks! > I asked because I got an IllegalArgumentException at the toLiteral method. > What I shall do is instrument that section of code more closely to see if > I was sending in something that should not have been sent. > > I do not think, at the moment, that order-preserving is necessary, though > I can see where it would be useful. > > Jack > > On Thu, Apr 30, 2015 at 10:06 AM, Mike Personick <mi...@sy...> wrote: > >> Jack, >> >> Lists get unrolled into individual statements: >> >> s.p = [o1, o2] >> >> -> >> >> <s> <p> "o1" . >> <s> <p> "o2" . >> >> Unfortunately not order-preserving right now, but I am working on a >> solution for that in the upcoming sprint (next two weeks). >> >> -Mike >> >> >> On Wed, Apr 29, 2015 at 6:06 PM, Jack Park <jac...@gm...> wrote: >> >>> New question. >>> Some of my properties are List<String>, not one of the Literal types in >>> DefaultBlueprintsValueFactory. >>> >>> What to do about that? >>> >>> Many thanks in advance. >>> Jack >>> >>> >>> ------------------------------------------------------------------------------ >>> One dashboard for servers and applications across Physical-Virtual-Cloud >>> Widest out-of-the-box monitoring support with 50+ applications >>> Performance metrics, stats and reports that give you Actionable Insights >>> Deep dive visibility with transaction tracing using APM Insight. >>> http://ad.doubleclick.net/ddm/clk/290420510;117567292;y >>> _______________________________________________ >>> Bigdata-developers mailing list >>> Big...@li... >>> https://lists.sourceforge.net/lists/listinfo/bigdata-developers >>> >>> >> > |