OAI-PHM. do not update record

694 Views Asked by At

I have a problem with the DSPACE and the OAI-PHM, it is not possible to update the records in the OAI ../oai/request?verb=ListSets, It shows me the old configuration and old records (33) Now they are 97. As I show you the output of the command:

curl http://localhost:8080/solr/oai/select?q=*:*&indent=true&rows=0

Return
numFound="97"

because the OAI-PMH on the client's side is not updated with 97 records.

A help please,
Thanks

1

There are 1 best solutions below

2
On

It sounds like you have run the correct DSpace commands but possibly in the wrong order.

  • dspace oai import - this will find new records and add them to the index
  • dspace oai import -c - this will rebuild the entire index
  • dspace oai clean-cache will recreate the cache from the newly updated index.

I recommend running dspace oai clean-cache again.