Documentation
¶
Index ¶
- type ElasticsearchStorage
- func (ess *ElasticsearchStorage) CountEvents(ctx context.Context, filter nostr.Filter) (int64, error)
- func (ess *ElasticsearchStorage) DeleteEvent(ctx context.Context, evt *nostr.Event) error
- func (ess *ElasticsearchStorage) Init() error
- func (ess *ElasticsearchStorage) QueryEvents(ctx context.Context, filter nostr.Filter) (chan *nostr.Event, error)
- func (ess *ElasticsearchStorage) SaveEvent(ctx context.Context, evt *nostr.Event) error
- type EsCountResult
- type EsSearchResult
- type IndexedEvent
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ElasticsearchStorage ¶
type ElasticsearchStorage struct {
URL string
IndexName string
// contains filtered or unexported fields
}
func (*ElasticsearchStorage) CountEvents ¶
func (*ElasticsearchStorage) DeleteEvent ¶
func (*ElasticsearchStorage) Init ¶
func (ess *ElasticsearchStorage) Init() error
func (*ElasticsearchStorage) QueryEvents ¶
type EsCountResult ¶
type EsCountResult struct {
Count int64
}
type EsSearchResult ¶
type EsSearchResult struct {
Took int
TimedOut bool `json:"timed_out"`
Hits struct {
Total struct {
Value int
Relation string
}
Hits []struct {
Source IndexedEvent `json:"_source"`
}
}
}
type IndexedEvent ¶
Click to show internal directories.
Click to hide internal directories.