Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. sSummaryFixedSettings :: IndexSettingsSummary -> IndexSettings

    bloodhound Database.Bloodhound.Client.Cluster

    No documentation available.

  2. sSummaryFixedSettingsLens :: Lens' IndexSettingsSummary IndexSettings

    bloodhound Database.Bloodhound.Client.Cluster

    No documentation available.

  3. snapRestoreIgnoreIndexSettings :: SnapshotRestoreSettings -> Maybe (NonEmpty Text)

    bloodhound Database.Bloodhound.Client.Cluster

    This type could be more rich but it isn't clear which settings are allowed to be ignored during restore, so we're going with including this feature in a basic form rather than omitting it. One example here would be "index.refresh_interval". Any setting specified here will revert back to the server default during the restore process.

  4. snapRestoreIgnoreIndexSettingsLens :: Lens' SnapshotRestoreSettings (Maybe (NonEmpty Text))

    bloodhound Database.Bloodhound.Client.Cluster

    No documentation available.

  5. snapRestoreIndexSettingsOverrides :: SnapshotRestoreSettings -> Maybe RestoreIndexSettings

    bloodhound Database.Bloodhound.Client.Cluster

    Settings to apply during the restore process. NOTE: This option is not supported in ES < 1.5 and should be set to Nothing in that case.

  6. snapRestoreIndexSettingsOverridesLens :: Lens' SnapshotRestoreSettings (Maybe RestoreIndexSettings)

    bloodhound Database.Bloodhound.Client.Cluster

    No documentation available.

  7. templateSettings :: IndexTemplate -> Maybe IndexSettings

    bloodhound Database.Bloodhound.Client.Cluster

    No documentation available.

  8. templateSettingsLens :: Lens' IndexTemplate (Maybe IndexSettings)

    bloodhound Database.Bloodhound.Client.Cluster

    No documentation available.

  9. getIndexSettings :: MonadBH m => IndexName -> m IndexSettingsSummary

    bloodhound Database.Bloodhound.Common.Client

    No documentation available.

  10. updateIndexSettings :: MonadBH m => NonEmpty UpdatableIndexSetting -> IndexName -> m Acknowledged

    bloodhound Database.Bloodhound.Common.Client

    updateIndexSettings will apply a non-empty list of setting updates to an index

    >>> _ <- runBH' $ createIndex defaultIndexSettings (IndexName "unconfiguredindex")
    
    >>> response <- runBH' $ updateIndexSettings (BlocksWrite False :| []) (IndexName "unconfiguredindex")
    
    >>> isSuccess response
    True
    

Page 174 of many | Previous | Next