Go 데이터 저장소 오류: 중첩된 구조체 슬라이스 조각
Go를 활용하여 성능을 향상하려는 노력의 일환으로 시도하는 동안 오류가 발생했습니다. Python에 정의된 AppEngine 데이터 저장소에서 항목을 검색합니다. 오류 메시지 "데이터 저장소: 중첩된 구조체 평면화로 인해 조각 조각이 발생합니다: "메시지" 필드"는 Go와 Python 프로젝트 모델 간의 구조적 불일치를 나타냅니다.
Go 모델 정의 및 데이터 저장소 호환성
Go 데이터 저장소 패키지에는 데이터 모델 구조와 관련하여 특정 제한 사항이 있습니다. ModelA 정의의 "메시지" 필드와 같은 슬라이스 내의 중첩된 슬라이스는 지원하지 않습니다. 즉, ModelA에 ModelB 엔터티 조각이 있을 수 있지만 ModelB 자체는 자체 필드 내에 조각을 가질 수 없습니다.
오류 해결을 위한 대체 옵션
이 오류를 해결하려면 다음과 같은 몇 가지 옵션이 있습니다.
예: 사용자 정의 역직렬화를 위한 PropertyLoaderSaver
사용자 정의 역직렬 변환기를 선택하는 경우 접근 방식을 사용하면 ModelA에 대한 PropertyLoaderSaver 인터페이스 구현을 정의하여 "메시지" 필드의 역직렬화를 처리할 수 있습니다. 예는 다음과 같습니다.
<code class="go">import ( "appengine_internal/datastore" "code.google.com/p/goprotobuf/proto" pb "appengine_internal/datastore" ) type ModelA struct { DateJoin time.Time `datastore:"date_join,"` Name string `datastore:"name,"` OwnerSalutation string `datastore:"owner_salutation,noindex"` OwnerEmailAddress string `datastore:"owner_email_address,"` LogoURL string `datastore:"logo_url,noindex"` Messages []ModelB `datastore:"-"` } // Load implements the PropertyLoaderSaver interface. func (seller *ModelA) Load(c <-chan datastore.Property) error { f := make(chan datastore.Property, 100) for p := range c { if p.Name == "bm" { var val pb.EntityProto err := proto.Unmarshal([]byte(p.Value.(string)), &val) if err != nil { return err } // TODO: Store the result as a new ModelB instance. } else { f <- p } } close(f) return datastore.LoadStruct(seller, f) }</code>
위 내용은 ## 중첩된 슬라이스가 있는 Go 데이터스토어에서 항목을 검색할 수 없는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!