I have quite a few dynamic fields. However, I will usually only want to return just a couple of those fields.
So, if my static fields are StaticField1 and StaticField2 and my dynamic fields are s_DynamicField1, sf_DynamicField2, etc., the following line will work as expected: http://localhost:8080/q=...&fl=StaticField1,StaticField2,* This will return all 4 fields. But http://localhost:8080/q=...&fl=StaticField1,StaticField2,s_DynamicField1 will only return StaticField1 and StaticField2. Is this a bug? Expected behavior? My dynamic fields are string or sfloat. They are index, stored, and multivalued. I am also using a pretty new build of Solr.