Documentation ¶
Overview ¶
Copyright 2022 The Dapr Authors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Index ¶
- func NewPostgreSQLStateStore(logger logger.Logger) state.Store
- type PostgreSQL
- func (p *PostgreSQL) BulkDelete(req []state.DeleteRequest) error
- func (p *PostgreSQL) BulkGet(req []state.GetRequest) (bool, []state.BulkGetResponse, error)
- func (p *PostgreSQL) BulkSet(req []state.SetRequest) error
- func (p *PostgreSQL) Close() error
- func (p *PostgreSQL) Delete(req *state.DeleteRequest) error
- func (p *PostgreSQL) Features() []state.Feature
- func (p *PostgreSQL) Get(req *state.GetRequest) (*state.GetResponse, error)
- func (p *PostgreSQL) Init(metadata state.Metadata) error
- func (p *PostgreSQL) Multi(request *state.TransactionalStateRequest) error
- func (p *PostgreSQL) Query(req *state.QueryRequest) (*state.QueryResponse, error)
- func (p *PostgreSQL) Set(req *state.SetRequest) error
- type Query
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type PostgreSQL ¶
type PostgreSQL struct {
// contains filtered or unexported fields
}
PostgreSQL state store.
func (*PostgreSQL) BulkDelete ¶
func (p *PostgreSQL) BulkDelete(req []state.DeleteRequest) error
BulkDelete removes multiple entries from the store.
func (*PostgreSQL) BulkGet ¶ added in v1.0.0
func (p *PostgreSQL) BulkGet(req []state.GetRequest) (bool, []state.BulkGetResponse, error)
BulkGet performs a bulks get operations.
func (*PostgreSQL) BulkSet ¶
func (p *PostgreSQL) BulkSet(req []state.SetRequest) error
BulkSet adds/updates multiple entities on store.
func (*PostgreSQL) Delete ¶
func (p *PostgreSQL) Delete(req *state.DeleteRequest) error
Delete removes an entity from the store.
func (*PostgreSQL) Features ¶ added in v1.1.1
func (p *PostgreSQL) Features() []state.Feature
Features returns the features available in this state store.
func (*PostgreSQL) Get ¶
func (p *PostgreSQL) Get(req *state.GetRequest) (*state.GetResponse, error)
Get returns an entity from store.
func (*PostgreSQL) Init ¶
func (p *PostgreSQL) Init(metadata state.Metadata) error
Init initializes the SQL server state store.
func (*PostgreSQL) Multi ¶
func (p *PostgreSQL) Multi(request *state.TransactionalStateRequest) error
Multi handles multiple transactions. Implements TransactionalStore.
func (*PostgreSQL) Query ¶ added in v1.7.0
func (p *PostgreSQL) Query(req *state.QueryRequest) (*state.QueryResponse, error)
Query executes a query against store.
func (*PostgreSQL) Set ¶
func (p *PostgreSQL) Set(req *state.SetRequest) error
Set adds/updates an entity on store.