This is for an Innovative system, so the 907c will include values indicating if the record is deleted or suppressed. Following this message in the archive [1], I've added this to my indexing properties file:
# remove deleted and suppressed records
bcode3 = 907c, (map.delete_record_map), DeleteRecordIfFieldEmpty
map.delete_record_map.d = null
map.delete_record_map.n = null
map.delete_record_map.s = null
map.delete_record_map = keep
But this doesn't seem to delete existing records in the Solr index (that is records that I indexed previously, but now need to remove from the index). Maybe I've done something wrong?
Or is the above code simply telling SolrMarc to 'skip' (that is, not index) these records, and I need something different that tells it to go back and delete existing records?
--Dave
[1] http://groups.google.com/group/solrmarc-tech/browse_thread/thread/5d31f0f8f3758bfc
==================
David Walker
Library Web Services Manager
California State University
http://xerxes.calstate.edu
The DeleteRecordIfFieldEmpty should work exactly as you expect. If the
907c field contains a 'd' 'n' or 's' the record should be deleted from
the existing index. This functionality was added because we relied on it
here at UVa for hiding records that were designated as "shadowed", more
recently it was decided to still add those records to the index, but to
flag them as "shadowed" and have the blacklight interface limit its
searches to not-shadowed items. However the functionality should still
be in there and should still work. If this is not the behavior you are
seeing then something must be wrong. I'll look at my local
implementation, an see whether the records seem to be deleted
-Bob
Hi all,I know this post was a long while back, however I'm running into something very similar and was wondering if the issue was ever resolved (or the cause found).I have the following configuration in my index file:-#the custom returnSupressedRecordAsNull returns null, the record will be deleted...record_status_t = customDeleteRecordIfFieldEmpty, returnSuppressedRecordAsNullThe returnSuppressedRecordAsNull is a simple custom Java method which checks our suppression fields and returns null if we want the record to be suppressed. (Note, the reason why I didn't use the standard 'record_status_display = 998f, (map.suppressed_record_map), DeleteRecordIfFieldEmpty' approach is because we needed to get the first field of a potentially multiple 998f fields.)I'm finding that the function works perfectly and it is stopping the indexing of the suppressed records, however it doesn't attempt to Delete any fields from Solr. As we are going to use this routine for nightly updates, its important that newly suppressed records are caught and deleted from the solr index.Here are the last few lines of output from SolrMarc indexfile routine:-INFO: Adding 0 of 46 documents to index14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter handleAllINFO: Deleting 0 documents from index14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter finishINFO: Calling commit (with optimize set to false)14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter finishINFO: Done with the commit, closing Solr14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter fAm I missing something (config, java source)?Thanks in advance,Simon
Maybe I’m misunderstanding something, but shouldn’t the configuration read:
record_status_t = custom, returnSuppressedRecordAsNull, DeleteRecordIfFieldEmpty
?
I have never used this feature, so maybe I’m confused, but the index configuration you shared doesn’t look quite right to me.
- Demian
From: solrma...@googlegroups.com [mailto:solrma...@googlegroups.com]
On Behalf Of Simon Lamb
Sent: Thursday, June 14, 2012 10:07 AM
To: solrma...@googlegroups.com
Subject: Re: [solrmarc-tech] deleting records on import
Hi all,
I know this post was a long while back, however I'm running into something very similar and was wondering if the issue was ever resolved (or the cause found).
I have the following configuration in my index file:-
#the custom returnSupressedRecordAsNull returns null, the record will be deleted...
record_status_t = customDeleteRecordIfFieldEmpty, returnSuppressedRecordAsNull
The returnSuppressedRecordAsNull is a simple custom Java method which checks our suppression fields and returns null if we want the record to be suppressed. (Note, the reason why I didn't use the standard 'record_status_display = 998f, (map.suppressed_record_map), DeleteRecordIfFieldEmpty' approach is because we needed to get the first field of a potentially multiple 998f fields.)
I'm finding that the function works perfectly and it is stopping the indexing of the suppressed records, however it doesn't attempt to Delete any fields from Solr. As we are going to use this routine for nightly updates, its important that newly suppressed records are caught and deleted from the solr index.
Here are the last few lines of output from SolrMarc indexfile routine:-
INFO: Adding 0 of 46 documents to index
14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter handleAll
INFO: Deleting 0 documents from index
14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter finish
INFO: Calling commit (with optimize set to false)
14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter finish
INFO: Done with the commit, closing Solr
14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter f
Am I missing something (config, java source)?
Thanks in advance,
Simon
On Tuesday, 27 July 2010 17:31:37 UTC+1, Robert Haschart wrote:
--
You received this message because you are subscribed to the Google Groups "solrmarc-tech" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/solrmarc-tech/-/oYN6MJDJgoUJ.
To post to this group, send email to solrma...@googlegroups.com.
To unsubscribe from this group, send email to solrmarc-tec...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/solrmarc-tech?hl=en.
>For more options, visit this group at
>http://groups.google.com/group/solrmarc-tech?hl=en.
>
> --
> You received this message because you are subscribed to the Google Groups
>"solrmarc-tech" group.
> To post to this group, send email to solrma...@googlegroups.com.
> To unsubscribe from this group, send email to
That is a helpful analysis. I am on vacation in Maine this week and probably won't be able to fix anything until I get back, but if I run out of stuff to read I might read through the code to see whether I can see the problem.
-Bob Haschart
Thanks for the replies guys.
Just to sum up my findings so far... With the following configuration:-
id = custom, getBibRecordNo
#If the custom returnSupressedRecordAsNull returns null, the record will be deleted...
record_status_t = customDeleteRecordIfFieldEmpty, returnSuppressedRecordAsNull
My custom methods are here - https://github.com/uohull/blah-solrmarc/blob/master/src/BlahIndexer.java
I can index a group of marc records with no issue, and the ID for the solr documents are the Bibliographic record ID from the Marc record (907a). However when I run the code again with the records responding with a null entry for the record_status_t, solr-marc correctly doesn't add the records (because they are suppressed), however it doesn't delete the said records from Solr.
If I change the configuration to this:-
id = 001, first record_status_t = customDeleteRecordIfFieldEmpty, returnSuppressedRecordAsNull
And re-index the fresh batch of marc records so that the solr ID is using the 001 field. When I run the solr-marc indexfile again with the returnSuppressedRecordAsNull returning null for each of the records, it correctly doesn't add them to the index, and it also correctly deletes them from the Solr index.
Therefore I surmise that what the delete is doing, is deleting from solr the records based upon the 001 rather then the one in _index.properties file. So when my ID's are set to 907a, it won't delete them because they don't match the 001 field.
This is unfortunate because we do need to use the 907a field as the basis for our solr id's because it is the consistently used within our catalog. I'm guessing somewhere that the Delete code will be deleting a solr document using - String id = record.getControlNumber(); ?
Again many thanks for the response,
Simon
On Wednesday, 20 June 2012 16:23:29 UTC+1, Robert J. Haschart wrote:
I think the syntax Simon is using is correct. In fact the results that he is seeing might actually be correct, but the logging messages he is seeing may well be misleading.
This log message: > INFO: Deleting 0 documents from index Only lists the records deleted by having been listed in a .del file not those that occur in a marc record file (or a marcxml file) where the data in the marc records specify that the record ought to be deleted.
Simon, can you try to verify the actual behavior that is occurring. ie. add a couple of records, and then process a couple of records that ought to trigger the deletion via the custom rule, and then check whether the records are actually present in the solr index.
-Bob Haschart
On Wed, 20 Jun 2012 14:19:15 +0000 Demian Katz <demia...@villanova.edu> wrote: > Maybe I'm misunderstanding something, but shouldn't the configuration >read: > > record_status_t = custom, returnSuppressedRecordAsNull, >DeleteRecordIfFieldEmpty > > ? > > I have never used this feature, so maybe I'm confused, but the index >configuration you shared doesn't look quite right to me. > > - Demian > >From: solrma...@googlegroups.com >[mailto:solrmarc-tech@googlegroups.com] On Behalf Of Simon Lamb > Sent: Thursday, June 14, 2012 10:07 AM > To: solrma...@googlegroups.com > Subject: Re: [solrmarc-tech] deleting records on import > > Hi all, > > I know this post was a long while back, however I'm running into something >very similar and was wondering if the issue was ever resolved (or the cause >found). > > I have the following configuration in my index file:- > > #the custom returnSupressedRecordAsNull returns null, the record will be >deleted... > record_status_t = customDeleteRecordIfFieldEmpty, >returnSuppressedRecordAsNull > > The returnSuppressedRecordAsNull is a simple custom Java method which >checks our suppression fields and returns null if we want the record to be >suppressed. (Note, the reason why I didn't use the standard > 'record_status_display = 998f, (map.suppressed_record_map), >DeleteRecordIfFieldEmpty' approach is because we needed to get the first >field of a potentially multiple 998f fields.) > > I'm finding that the function works perfectly and it is stopping the >indexing of the suppressed records, however it doesn't attempt to Delete >any fields from Solr. As we are going to use this routine for nightly >updates, its important that newly suppressed records are caught and deleted >from the solr index. > > Here are the last few lines of output from SolrMarc indexfile routine:- > > INFO: Adding 0 of 46 documents to index > 14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter handleAll > INFO: Deleting 0 documents from index > 14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter finish > INFO: Calling commit (with optimize set to false) > 14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter finish > INFO: Done with the commit, closing Solr > 14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter f > > Am I missing something (config, java source)? > > Thanks in advance, > Simon > > On Tuesday, 27 July 2010 17:31:37 UTC+1, Robert Haschart wrote: > > Dave, > > The DeleteRecordIfFieldEmpty should work exactly as you expect. If the > 907c field contains a 'd' 'n' or 's' the record should be deleted from > the existing index. This functionality was added because we relied on it > here at UVa for hiding records that were designated as "shadowed", more > recently it was decided to still add those records to the index, but to > flag them as "shadowed" and have the blacklight interface limit its > searches to not-shadowed items. However the functionality should still > be in there and should still work. If this is not the behavior you are > seeing then something must be wrong. I'll look at my local > implementation, an see whether the records seem to be deleted > > -Bob > > Walker, David wrote: > >>So, I'm getting a nightly dump of records that have changed in our catalog. >> And that dump will occasionally include records that have been marked as >>'deleted' or 'suppressed'. >> >>This is for an Innovative system, so the 907c will include values >>indicating if the record is deleted or suppressed. Following this message >>in the archive [1], I've added this to my indexing properties file: >> >> # remove deleted and suppressed records >> >> bcode3 = 907c, (map.delete_record_map), DeleteRecordIfFieldEmpty >> map.delete_record_map.d = null >> map.delete_record_map.n = null >> map.delete_record_map.s = null >> map.delete_record_map = keep >> >>But this doesn't seem to delete existing records in the Solr index (that is >>records that I indexed previously, but now need to remove from the index). >> Maybe I've done something wrong? >> >>Or is the above code simply telling SolrMarc to 'skip' (that is, not index) >>these records, and I need something different that tells it to go back and >>delete existing records? >> >>--Dave >> >>[1] >>
http://groups.google.com/group/solrmarc-tech/browse_thread/thread/5d31f0f8f3758bfc >> >>================== >>David Walker >>Library Web Services Manager >>California State University >>http://xerxes.calstate.edu >> >> >> > -- > You received this message because you are subscribed to the Google Groups >"solrmarc-tech" group. > To view this discussion on the web visit >https://groups.google.com/d/msg/solrmarc-tech/-/oYN6MJDJgoUJ. > To post to this group, send email to solrma...@googlegroups.com. > To unsubscribe from this group, send email to >solrmarc-tech+unsubscribe@googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/solrmarc-tech?hl=en. > > -- > You received this message because you are subscribed to the Google Groups >"solrmarc-tech" group. > To post to this group, send email to solrma...@googlegroups.com. > To unsubscribe from this group, send email to >solrmarc-tech+unsubscribe@googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/solrmarc-tech?hl=en. >
--
You received this message because you are subscribed to the Google Groups "solrmarc-tech" group.
To view this discussion on the web visit https://groups.google.com/d/msg/solrmarc-tech/-/oK-nu4ui0y4J.
To post to this group, send email to solrma...@googlegroups.com.
To unsubscribe from this group, send email to solrmarc-tech+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/solrmarc-tech?hl=en.
--
You received this message because you are subscribed to the Google Groups "solrmarc-tech" group.
To post to this group, send email to solrma...@googlegroups.com.
To unsubscribe from this group, send email to solrmarc-tech+unsubscribe@googlegroups.com.
If ordering ought to matter, can't you just store these in an ordered data structure instead of a Java Set? Or is that kind of a hard to change implication of using the standard java properties parser?
Just storing in an ordered data structure seems preferable to storing in a set but then adding workarounds on top with caching and attempts to resolve inter-property dependencies. If simply storing them ordered instead would work instead.
On Wed, 20 Jun 2012 14:19:15 +0000 Demian Katz <demia...@villanova.edu> wrote: > Maybe I'm misunderstanding something, but shouldn't the configuration >read: > > record_status_t = custom, returnSuppressedRecordAsNull, >DeleteRecordIfFieldEmpty > > ? > > I have never used this feature, so maybe I'm confused, but the index >configuration you shared doesn't look quite right to me. > > - Demian > >From: solrma...@googlegroups.com >[mailto:solrma...@googlegroups.com] On Behalf Of Simon Lamb > Sent: Thursday, June 14, 2012 10:07 AM > To: solrma...@googlegroups.com > Subject: Re: [solrmarc-tech] deleting records on import > > Hi all, > > I know this post was a long while back, however I'm running into something >very similar and was wondering if the issue was ever resolved (or the cause >found). > > I have the following configuration in my index file:- > > #the custom returnSupressedRecordAsNull returns null, the record will be >deleted... > record_status_t = customDeleteRecordIfFieldEmpty, >returnSuppressedRecordAsNull > > The returnSuppressedRecordAsNull is a simple custom Java method which >checks our suppression fields and returns null if we want the record to be >suppressed. (Note, the reason why I didn't use the standard > 'record_status_display = 998f, (map.suppressed_record_map), >DeleteRecordIfFieldEmpty' approach is because we needed to get the first >field of a potentially multiple 998f fields.) > > I'm finding that the function works perfectly and it is stopping the >indexing of the suppressed records, however it doesn't attempt to Delete >any fields from Solr. As we are going to use this routine for nightly >updates, its important that newly suppressed records are caught and deleted >from the solr index. > > Here are the last few lines of output from SolrMarc indexfile routine:- > > INFO: Adding 0 of 46 documents to index > 14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter handleAll > INFO: Deleting 0 documents from index > 14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter finish > INFO: Calling commit (with optimize set to false) > 14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter finish > INFO: Done with the commit, closing Solr > 14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter f > > Am I missing something (config, java source)? > > Thanks in advance, > Simon > > On Tuesday, 27 July 2010 17:31:37 UTC+1, Robert Haschart wrote: > > Dave, > > The DeleteRecordIfFieldEmpty should work exactly as you expect. If the > 907c field contains a 'd' 'n' or 's' the record should be deleted from > the existing index. This functionality was added because we relied on it > here at UVa for hiding records that were designated as "shadowed", more > recently it was decided to still add those records to the index, but to > flag them as "shadowed" and have the blacklight interface limit its > searches to not-shadowed items. However the functionality should still > be in there and should still work. If this is not the behavior you are > seeing then something must be wrong. I'll look at my local > implementation, an see whether the records seem to be deleted > > -Bob > > Walker, David wrote: > >>So, I'm getting a nightly dump of records that have changed in our catalog. >> And that dump will occasionally include records that have been marked as >>'deleted' or 'suppressed'. >> >>This is for an Innovative system, so the 907c will include values >>indicating if the record is deleted or suppressed. Following this message >>in the archive [1], I've added this to my indexing properties file: >> >> # remove deleted and suppressed records >> >> bcode3 = 907c, (map.delete_record_map), DeleteRecordIfFieldEmpty >> map.delete_record_map.d = null >> map.delete_record_map.n = null >> map.delete_record_map.s = null >> map.delete_record_map = keep >> >>But this doesn't seem to delete existing records in the Solr index (that is >>records that I indexed previously, but now need to remove from the index). >> Maybe I've done something wrong? >> >>Or is the above code simply telling SolrMarc to 'skip' (that is, not index) >>these records, and I need something different that tells it to go back and >>delete existing records? >> >>--Dave >> >>[1] >>
http://groups.google.com/group/solrmarc-tech/browse_thread/thread/5d31f0f8f3758bfc >> >>================== >>David Walker >>Library Web Services Manager >>California State University >>http://xerxes.calstate.edu >> >> >> > -- > You received this message because you are subscribed to the Google Groups >"solrmarc-tech" group. > To view this discussion on the web visit >https://groups.google.com/d/msg/solrmarc-tech/-/oYN6MJDJgoUJ. > To post to this group, send email to solrma...@googlegroups.com. > To unsubscribe from this group, send email to >solrmarc-tec...@googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/solrmarc-tech?hl=en. > > -- > You received this message because you are subscribed to the Google Groups >"solrmarc-tech" group. > To post to this group, send email to solrma...@googlegroups.com. > To unsubscribe from this group, send email to >solrmarc-tec...@googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/solrmarc-tech?hl=en. >
--
You received this message because you are subscribed to the Google Groups "solrmarc-tech" group.
To view this discussion on the web visit https://groups.google.com/d/msg/solrmarc-tech/-/oK-nu4ui0y4J.
To post to this group, send email to solrma...@googlegroups.com.
To unsubscribe from this group, send email to solrmarc-tec...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/solrmarc-tech?hl=en.
--
You received this message because you are subscribed to the Google Groups "solrmarc-tech" group.
To post to this group, send email to solrma...@googlegroups.com.
To unsubscribe from this group, send email to solrmarc-tec...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "solrmarc-tech" group.
To post to this group, send email to solrma...@googlegroups.com.
To unsubscribe from this group, send email to solrmarc-tec...@googlegroups.com.
On Wed, 20 Jun 2012 14:19:15 +0000 Demian Katz <demia...@villanova.edu> wrote: > Maybe I'm misunderstanding something, but shouldn't the configuration >read: > > record_status_t = custom, returnSuppressedRecordAsNull, >DeleteRecordIfFieldEmpty > > ? > > I have never used this feature, so maybe I'm confused, but the index >configuration you shared doesn't look quite right to me. > > - Demian > >From: solrma...@googlegroups.com >[mailto:solrmarc-tech@googlegroups.com] On Behalf Of Simon Lamb > Sent: Thursday, June 14, 2012 10:07 AM > To: solrma...@googlegroups.com > Subject: Re: [solrmarc-tech] deleting records on import > > Hi all, > > I know this post was a long while back, however I'm running into something >very similar and was wondering if the issue was ever resolved (or the cause >found). > > I have the following configuration in my index file:- > > #the custom returnSupressedRecordAsNull returns null, the record will be >deleted... > record_status_t = customDeleteRecordIfFieldEmpty, >returnSuppressedRecordAsNull > > The returnSuppressedRecordAsNull is a simple custom Java method which >checks our suppression fields and returns null if we want the record to be >suppressed. (Note, the reason why I didn't use the standard > 'record_status_display = 998f, (map.suppressed_record_map), >DeleteRecordIfFieldEmpty' approach is because we needed to get the first >field of a potentially multiple 998f fields.) > > I'm finding that the function works perfectly and it is stopping the >indexing of the suppressed records, however it doesn't attempt to Delete >any fields from Solr. As we are going to use this routine for nightly >updates, its important that newly suppressed records are caught and deleted >from the solr index. > > Here are the last few lines of output from SolrMarc indexfile routine:- > > INFO: Adding 0 of 46 documents to index > 14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter handleAll > INFO: Deleting 0 documents from index > 14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter finish > INFO: Calling commit (with optimize set to false) > 14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter finish > INFO: Done with the commit, closing Solr > 14-Jun-2012 15:02:33 org.solrmarc.marc.MarcImporter f > > Am I missing something (config, java source)? > > Thanks in advance, > Simon > > On Tuesday, 27 July 2010 17:31:37 UTC+1, Robert Haschart wrote: > > Dave, > > The DeleteRecordIfFieldEmpty should work exactly as you expect. If the > 907c field contains a 'd' 'n' or 's' the record should be deleted from > the existing index. This functionality was added because we relied on it > here at UVa for hiding records that were designated as "shadowed", more > recently it was decided to still add those records to the index, but to > flag them as "shadowed" and have the blacklight interface limit its > searches to not-shadowed items. However the functionality should still > be in there and should still work. If this is not the behavior you are > seeing then something must be wrong. I'll look at my local > implementation, an see whether the records seem to be deleted > > -Bob > > Walker, David wrote: > >>So, I'm getting a nightly dump of records that have changed in our catalog. >> And that dump will occasionally include records that have been marked as >>'deleted' or 'suppressed'. >> >>This is for an Innovative system, so the 907c will include values >>indicating if the record is deleted or suppressed. Following this message >>in the archive [1], I've added this to my indexing properties file: >> >> # remove deleted and suppressed records >> >> bcode3 = 907c, (map.delete_record_map), DeleteRecordIfFieldEmpty >> map.delete_record_map.d = null >> map.delete_record_map.n = null >> map.delete_record_map.s = null >> map.delete_record_map = keep >> >>But this doesn't seem to delete existing records in the Solr index (that is >>records that I indexed previously, but now need to remove from the index). >> Maybe I've done something wrong? >> >>Or is the above code simply telling SolrMarc to 'skip' (that is, not index) >>these records, and I need something different that tells it to go back and >>delete existing records? >> >>--Dave >> >>[1] >>
http://groups.google.com/group/solrmarc-tech/browse_thread/thread/5d31f0f8f3758bfc >> >>================== >>David Walker >>Library Web Services Manager >>California State University >>http://xerxes.calstate.edu >> >> >> > -- > You received this message because you are subscribed to the Google Groups >"solrmarc-tech" group. > To view this discussion on the web visit >https://groups.google.com/d/msg/solrmarc-tech/-/oYN6MJDJgoUJ. > To post to this group, send email to solrma...@googlegroups.com. > To unsubscribe from this group, send email to >solrmarc-tech+unsubscribe@googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/solrmarc-tech?hl=en. > > -- > You received this message because you are subscribed to the Google Groups >"solrmarc-tech" group. > To post to this group, send email to solrma...@googlegroups.com. > To unsubscribe from this group, send email to >solrmarc-tech+unsubscribe@googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/solrmarc-tech?hl=en. >
--
You received this message because you are subscribed to the Google Groups "solrmarc-tech" group.
To view this discussion on the web visit https://groups.google.com/d/msg/solrmarc-tech/-/oK-nu4ui0y4J.
To post to this group, send email to solrma...@googlegroups.com.
To unsubscribe from this group, send email to solrmarc-tech+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/solrmarc-tech?hl=en.
--
You received this message because you are subscribed to the Google Groups "solrmarc-tech" group.
To post to this group, send email to solrma...@googlegroups.com.
To unsubscribe from this group, send email to solrmarc-tech+unsubscribe@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "solrmarc-tech" group.
To post to this group, send email to solrma...@googlegroups.com.
To unsubscribe from this group, send email to solrmarc-tech+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/solrmarc-tech?hl=en.
--
You received this message because you are subscribed to the Google Groups "solrmarc-tech" group.
To post to this group, send email to solrma...@googlegroups.com.
To unsubscribe from this group, send email to solrmarc-tech+unsubscribe@googlegroups.com.