Skip to content
#

relational-database

Here are 117 public repositories matching this topic...

JeanGolang
JeanGolang commented Feb 7, 2017

Hello Philip!
I think there is an issue with this part of the code of rqlite (store/store.go).

func (s *Store) Database(leader bool) ([]byte, error) {
	if leader && s.raft.State() != raft.Leader {
		return nil, ErrNotLeader
	}
	// Ensure only one snapshot can take place at once, and block all queries.
	s.mu.Lock()
	defer s.mu.Unlock()

	f, err := ioutil.TempFile("", "rqlilte-snap-
videni
videni commented Sep 29, 2019

what is prefer way to add relation and remove relation? I found example as below, but I did't find any document about the two methods.

 case 'ADD_AUTHOR_TO_BOOK':
        Book.withId(action.payload.bookId).authors.add(action.payload.author);  // add new entity ,  add relation?  this doesn't work.
        break;
    case 'REMOVE_AUTHOR_FROM_BOOK':
        Book.withId(action.payload.bo
alecgrieser
alecgrieser commented Jul 12, 2019

There is instrumentation on the store timer that takes a future, but the problem can be that if a future is created and then stuff is done with it for a while before it is instrumented, the metric will only record time for the events that have happened after the future has been created.

One way to improve this might be to have a version of instrument that takes a `Supplier<CompletableFuture<T

The CEDS Integrated Data Store factors the entities and attributes of the CEDS Domain Entity Schema (DES) with standard technical syntax and 3rd normal form database normalization. The IDS Logical Model provides a standard framework for integration of P-20 data systems through a well-normalized “operational data store”. In a P-20 data system, the IDS models the most current view of data available to the enterprise, including some historical data (such as prior assessment data and enrollment records). A “record” is generally added for each Person-Organization Relationship change event in the system. This CEDS logical model does not directly address the production aspects of log and change management.

  • Updated Aug 25, 2020
  • TSQL
CEDS-Collaborative-Exchange

The CEDS Collaborative Exchange is a repository of code developed by the community that interacts with the CEDS Integration Data Store and the CEDS Elements repositories. All resources provided in this community are considered free and open source.

  • Updated Feb 10, 2020

Improve this page

Add a description, image, and links to the relational-database topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the relational-database topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.