Download the PHP package arckinteractive/elgg_solr without Composer
On this page you can find all versions of the php package arckinteractive/elgg_solr. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download arckinteractive/elgg_solr
More information about arckinteractive/elgg_solr
Files in arckinteractive/elgg_solr
Package elgg_solr
Short Description Basic solr integration to replace elgg search
License GPL-2.0-only
Homepage http://arckinteractive.com
Informations about the package elgg_solr
elgg_solr
Speed up site search by using a dedicated Solr search index
- Search Entities
- Search tags (exact match)
- Search File contents
This plugin follows the structure of the default Elgg search plugin, can be extended using the same search plugin hooks.
Dependencies
- This plugin depends on the default elgg search plugin (bundled with Elgg)
- This plugin depends on the vroom plugin - https://github.com/jumbojett/vroom
Installation
-
Download the plugin and upload it to
/mod/elgg_solr
, or install with composercomposer require arckinteractive/elgg_solr:~2.0
-
In Admin > Plugins, reorder the
elgg_solr
plugin to be positioned undersearch
plugin, and enable it -
Create a new Solr instance and configure it:
- Make sure that
/<instance>/conf/solrconfig.xml
is set to use classic index schema:<schemaFactory class="ClassicIndexSchemaFactory"></schemaFactory>
- Copy contents of
install/schema.xml
(orinstall/schema.solr5.xml
for Solr 5+) included in the root of the plugin to/<instance>/conf/schema.xml
- Copy contents of
install/solrconfig.solr5.xml
to `//conf/solrconfig.xml if using solr 5
- Copy contents of
- Make sure that
-
Update
elgg_solr
plugin settings to point to the new Solr instance -
Trigger a reindex from the plugin setting page
- Ensure that daily cron is configured and active
Plugin hooks
search, <search_type>
search, <entity_type>
search, <entity_type>:<entity_subtype>
These hooks can be used to modify search criteria
elgg_solr:index, <entity_type>
elgg_solr:index, <entity_type>:<entity_subtype>
elgg_solr:index, annotation
These hooks can be used to customize indexed fields
elgg_solr:can_index, annotation
Allows to add annotations to index by name
elgg_solr:access, entities
Allows plugins to add additional access queries.
Indexing
Tuning indexed values
Indexed values can be customized using 'elgg_solr:index',<entity_type>'
hook:
Adding annotations to index
To add an annotation to the index, add annotation name to the return of the 'elgg_solr:can_index','annotation'
:
Indexed values
Entity
id
- guidtype
- entity typesubtype
- entity subtypeowner_guid
- guid of the ownercontainer_guid
- guid of the containeraccess_id
- access leveltitle
- titlename
- namedescription
- descriptiontime_created
- timestamp of the creationtime_updated_i
- timestamp of the last updateenabled
- is entity enabledtag_<tag_name>_ss
- tags for registered tag metadata nameshas_pic_b
- flag indicating that entity has an uploaded iconresponses_thread_i
- guid of the comment/reply thread rootresponses_is
- guids of comments/repliesresponses_count_i
- total count of comments/replieslikes_count_i
- total count of likes
User
In addition to Entity fields:
username
- usernameprofile_<field_name>_s
- profile fields with a single valueprofile_<field_name>_ss
- profile fields with multiple values (tags)groups_is
- guids of groups a user is member ofgroups_count_i
- total number of groups a user is a member offriends_is
- guids of user's friendsfriends_count_i
- total number of friendslast_login_i
- timestamp of the last loginlast_action_i
- timestamp of the last activityhas_pic_b
- flag indicating that user has an avatar
Group
In addition to Entity fields:
group_<field_name>_s
- profile fields with a single valuegroup_<field_name>_ss
- profile fields with multiple values (tags)members_is
- guids of group membersmembers_count_i
- total number of group members
File
To index file contents, enable extraction (extract_handler
) in plugin settings.
In addition to Entity fields:
attr_content
- extracted contentssimpletype_s
- simple type (e.g.image
,document
etc)mimetype_s
- detected mime type (e.g.application/json
)originalfilename_s
- original name of the uploaded filefilesize_i
- file size in bytes
All versions of elgg_solr with dependencies
composer/installers Version ^1.2
solarium/solarium Version 3.6.*
ezyang/htmlpurifier Version 4.7.0
jumbojett/vroom Version dev-master